@cyrilverloop/codingame-configuration 1.20.0 → 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/config/easy/ChocolateBarCut/code/CGCode.cpp +24 -0
- package/config/easy/ChocolateBarCut/code/CGCode.java +22 -0
- package/config/easy/ChocolateBarCut/code/CGCode.js +13 -0
- package/config/easy/ChocolateBarCut/code/CGCode.php +14 -0
- package/config/easy/ChocolateBarCut/code/CGCode.ts +13 -0
- package/config/easy/ChocolateBarCut/config.json +48 -0
- package/config/easy/ChocolateBarCut/input/01 - Small.txt +7 -0
- package/config/easy/ChocolateBarCut/input/02 - Line.txt +8 -0
- package/config/easy/ChocolateBarCut/input/03 - Without vertices.txt +9 -0
- package/config/easy/ChocolateBarCut/input/04 - Some vertices.txt +11 -0
- package/config/easy/ChocolateBarCut/input/05 - Big.txt +11 -0
- package/config/easy/ChocolateBarCut/input/06 - Huge.txt +11 -0
- package/config/easy/ChocolateBarCut/input/07 - Astronomical.txt +11 -0
- package/config/easy/ChocolateBarCut/input/08 - Gargantuan.txt +51 -0
- package/config/easy/ChocolateBarCut/output/01 - Small.txt +6 -0
- package/config/easy/ChocolateBarCut/output/02 - Line.txt +7 -0
- package/config/easy/ChocolateBarCut/output/03 - Without vertices.txt +8 -0
- package/config/easy/ChocolateBarCut/output/04 - Some vertices.txt +10 -0
- package/config/easy/ChocolateBarCut/output/05 - Big.txt +10 -0
- package/config/easy/ChocolateBarCut/output/06 - Huge.txt +10 -0
- package/config/easy/ChocolateBarCut/output/07 - Astronomical.txt +10 -0
- package/config/easy/ChocolateBarCut/output/08 - Gargantuan.txt +50 -0
- package/config/easy/GaussAndTheStolenNumbers/code/CGCode.cpp +21 -0
- package/config/easy/GaussAndTheStolenNumbers/code/CGCode.java +18 -0
- package/config/easy/GaussAndTheStolenNumbers/code/CGCode.js +8 -0
- package/config/easy/GaussAndTheStolenNumbers/code/CGCode.php +9 -0
- package/config/easy/GaussAndTheStolenNumbers/code/CGCode.ts +8 -0
- package/config/easy/GaussAndTheStolenNumbers/config.json +33 -0
- package/config/easy/GaussAndTheStolenNumbers/input/01 - General number.txt +3 -0
- package/config/easy/GaussAndTheStolenNumbers/input/02 - Lucky 7.txt +3 -0
- package/config/easy/GaussAndTheStolenNumbers/input/03 - Lets go bigger!.txt +3 -0
- package/config/easy/GaussAndTheStolenNumbers/input/04 - Extreme ends.txt +3 -0
- package/config/easy/GaussAndTheStolenNumbers/input/05 - Middle pair.txt +3 -0
- package/config/easy/GaussAndTheStolenNumbers/output/01 - General number.txt +1 -0
- package/config/easy/GaussAndTheStolenNumbers/output/02 - Lucky 7.txt +1 -0
- package/config/easy/GaussAndTheStolenNumbers/output/03 - Lets go bigger!.txt +1 -0
- package/config/easy/GaussAndTheStolenNumbers/output/04 - Extreme ends.txt +1 -0
- package/config/easy/GaussAndTheStolenNumbers/output/05 - Middle pair.txt +1 -0
- package/config/easy/LinesIntersections/code/CGCode.cpp +24 -0
- package/config/easy/LinesIntersections/code/CGCode.java +22 -0
- package/config/easy/LinesIntersections/code/CGCode.js +13 -0
- package/config/easy/LinesIntersections/code/CGCode.php +11 -0
- package/config/easy/LinesIntersections/code/CGCode.ts +13 -0
- package/config/easy/LinesIntersections/config.json +68 -0
- package/config/easy/LinesIntersections/input/01 - Triangle.txt +4 -0
- package/config/easy/LinesIntersections/input/02 - Two intersects.txt +3 -0
- package/config/easy/LinesIntersections/input/03 - Two parallel.txt +3 -0
- package/config/easy/LinesIntersections/input/04 - Square.txt +5 -0
- package/config/easy/LinesIntersections/input/05 - Square crossed.txt +7 -0
- package/config/easy/LinesIntersections/input/06 - One line.txt +2 -0
- package/config/easy/LinesIntersections/input/07 - Zero.txt +1 -0
- package/config/easy/LinesIntersections/input/08 - 10 lines.txt +11 -0
- package/config/easy/LinesIntersections/input/09 - 10 lines with maximum intersections.txt +11 -0
- package/config/easy/LinesIntersections/input/10 - 10 coincident lines.txt +11 -0
- package/config/easy/LinesIntersections/input/11 - All cases.txt +11 -0
- package/config/easy/LinesIntersections/input/12 - Star.txt +9 -0
- package/config/easy/LinesIntersections/output/01 - Triangle.txt +4 -0
- package/config/easy/LinesIntersections/output/02 - Two intersects.txt +2 -0
- package/config/easy/LinesIntersections/output/03 - Two parallel.txt +1 -0
- package/config/easy/LinesIntersections/output/04 - Square.txt +5 -0
- package/config/easy/LinesIntersections/output/05 - Square crossed.txt +6 -0
- package/config/easy/LinesIntersections/output/06 - One line.txt +1 -0
- package/config/easy/LinesIntersections/output/07 - Zero.txt +1 -0
- package/config/easy/LinesIntersections/output/08 - 10 lines.txt +39 -0
- package/config/easy/LinesIntersections/output/09 - 10 lines with maximum intersections.txt +46 -0
- package/config/easy/LinesIntersections/output/10 - 10 coincident lines.txt +1 -0
- package/config/easy/LinesIntersections/output/11 - All cases.txt +14 -0
- package/config/easy/LinesIntersections/output/12 - Star.txt +2 -0
- package/config/easy/SetProbabilitiesCardGame/code/CGCode.cpp +24 -0
- package/config/easy/SetProbabilitiesCardGame/code/CGCode.java +22 -0
- package/config/easy/SetProbabilitiesCardGame/code/CGCode.js +13 -0
- package/config/easy/SetProbabilitiesCardGame/code/CGCode.php +12 -0
- package/config/easy/SetProbabilitiesCardGame/code/CGCode.ts +13 -0
- package/config/easy/SetProbabilitiesCardGame/config.json +48 -0
- package/config/easy/SetProbabilitiesCardGame/input/01 - A simple start.txt +3 -0
- package/config/easy/SetProbabilitiesCardGame/input/02 - A few more cards.txt +6 -0
- package/config/easy/SetProbabilitiesCardGame/input/03 - And a few more....txt +9 -0
- package/config/easy/SetProbabilitiesCardGame/input/04 - A classic game of set.txt +13 -0
- package/config/easy/SetProbabilitiesCardGame/input/05 - Lots of cards.txt +16 -0
- package/config/easy/SetProbabilitiesCardGame/input/06 - Almost guaranteed.txt +20 -0
- package/config/easy/SetProbabilitiesCardGame/input/07 - No need to draw a card!.txt +8 -0
- package/config/easy/SetProbabilitiesCardGame/input/08 - I need to draw a card.txt +21 -0
- package/config/easy/SetProbabilitiesCardGame/output/01 - A simple start.txt +1 -0
- package/config/easy/SetProbabilitiesCardGame/output/02 - A few more cards.txt +1 -0
- package/config/easy/SetProbabilitiesCardGame/output/03 - And a few more....txt +1 -0
- package/config/easy/SetProbabilitiesCardGame/output/04 - A classic game of set.txt +1 -0
- package/config/easy/SetProbabilitiesCardGame/output/05 - Lots of cards.txt +1 -0
- package/config/easy/SetProbabilitiesCardGame/output/06 - Almost guaranteed.txt +1 -0
- package/config/easy/SetProbabilitiesCardGame/output/07 - No need to draw a card!.txt +1 -0
- package/config/easy/SetProbabilitiesCardGame/output/08 - I need to draw a card.txt +1 -0
- package/config/easy/SynchronizedScrambles/code/CGCode.cpp +18 -0
- package/config/easy/SynchronizedScrambles/code/CGCode.java +17 -0
- package/config/easy/SynchronizedScrambles/code/CGCode.js +8 -0
- package/config/easy/SynchronizedScrambles/code/CGCode.php +7 -0
- package/config/easy/SynchronizedScrambles/code/CGCode.ts +8 -0
- package/config/easy/SynchronizedScrambles/config.json +33 -0
- package/config/easy/SynchronizedScrambles/input/01 - Just a minute.txt +1 -0
- package/config/easy/SynchronizedScrambles/input/02 - Two instants per day.txt +1 -0
- package/config/easy/SynchronizedScrambles/input/03 - 10-minute window.txt +1 -0
- package/config/easy/SynchronizedScrambles/input/04 - Many random points.txt +1 -0
- package/config/easy/SynchronizedScrambles/input/05 - Almost an hour.txt +1 -0
- package/config/easy/SynchronizedScrambles/output/01 - Just a minute.txt +1 -0
- package/config/easy/SynchronizedScrambles/output/02 - Two instants per day.txt +2 -0
- package/config/easy/SynchronizedScrambles/output/03 - 10-minute window.txt +10 -0
- package/config/easy/SynchronizedScrambles/output/04 - Many random points.txt +16 -0
- package/config/easy/SynchronizedScrambles/output/05 - Almost an hour.txt +59 -0
- package/config/hard/NRamanujanPrime/code/CGCode.cpp +17 -0
- package/config/hard/NRamanujanPrime/code/CGCode.java +16 -0
- package/config/hard/NRamanujanPrime/code/CGCode.js +6 -0
- package/config/hard/NRamanujanPrime/code/CGCode.php +7 -0
- package/config/hard/NRamanujanPrime/code/CGCode.ts +6 -0
- package/config/hard/NRamanujanPrime/config.json +48 -0
- package/config/hard/NRamanujanPrime/input/01 - test 1.txt +1 -0
- package/config/hard/NRamanujanPrime/input/02 - test 2.txt +1 -0
- package/config/hard/NRamanujanPrime/input/03 - test 3.txt +1 -0
- package/config/hard/NRamanujanPrime/input/04 - test 4.txt +1 -0
- package/config/hard/NRamanujanPrime/input/05 - test 5.txt +1 -0
- package/config/hard/NRamanujanPrime/input/06 - test 6.txt +1 -0
- package/config/hard/NRamanujanPrime/input/07 - test 7.txt +1 -0
- package/config/hard/NRamanujanPrime/input/08 - test 8.txt +1 -0
- package/config/hard/NRamanujanPrime/output/01 - test 1.txt +1 -0
- package/config/hard/NRamanujanPrime/output/02 - test 2.txt +1 -0
- package/config/hard/NRamanujanPrime/output/03 - test 3.txt +1 -0
- package/config/hard/NRamanujanPrime/output/04 - test 4.txt +1 -0
- package/config/hard/NRamanujanPrime/output/05 - test 5.txt +1 -0
- package/config/hard/NRamanujanPrime/output/06 - test 6.txt +1 -0
- package/config/hard/NRamanujanPrime/output/07 - test 7.txt +1 -0
- package/config/hard/NRamanujanPrime/output/08 - test 8.txt +1 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/code/CGCode.cpp +22 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/code/CGCode.java +19 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/code/CGCode.js +9 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/code/CGCode.php +10 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/code/CGCode.ts +9 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/config.json +28 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/input/01 - Test 1.txt +3 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/input/02 - Test 2.txt +3 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/input/03 - Big message.txt +3 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/input/04 - Realy big message with random word.txt +3 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/output/01 - Test 1.txt +2 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/output/02 - Test 2.txt +2 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/output/03 - Big message.txt +2 -0
- package/config/medium/AgentXMission3TheBottleInTheSea/output/04 - Realy big message with random word.txt +2 -0
- package/config/medium/ShortestPalindromicPath/code/CGCode.cpp +27 -0
- package/config/medium/ShortestPalindromicPath/code/CGCode.java +26 -0
- package/config/medium/ShortestPalindromicPath/code/CGCode.js +15 -0
- package/config/medium/ShortestPalindromicPath/code/CGCode.php +13 -0
- package/config/medium/ShortestPalindromicPath/code/CGCode.ts +15 -0
- package/config/medium/ShortestPalindromicPath/config.json +108 -0
- package/config/medium/ShortestPalindromicPath/input/01 - Example 1.txt +6 -0
- package/config/medium/ShortestPalindromicPath/input/02 - Example 2.txt +8 -0
- package/config/medium/ShortestPalindromicPath/input/03 - No Diagonal.txt +8 -0
- package/config/medium/ShortestPalindromicPath/input/04 - Palindromic Required.txt +8 -0
- package/config/medium/ShortestPalindromicPath/input/05 - All 26 Characters.txt +11 -0
- package/config/medium/ShortestPalindromicPath/input/06 - Smallest.txt +5 -0
- package/config/medium/ShortestPalindromicPath/input/07 - Adjacent Start and Goal.txt +9 -0
- package/config/medium/ShortestPalindromicPath/input/08 - Uniform.txt +9 -0
- package/config/medium/ShortestPalindromicPath/input/09 - Odd.txt +10 -0
- package/config/medium/ShortestPalindromicPath/input/10 - Even.txt +11 -0
- package/config/medium/ShortestPalindromicPath/input/11 - Multiple Paths.txt +7 -0
- package/config/medium/ShortestPalindromicPath/input/12 - Loop at Middle.txt +9 -0
- package/config/medium/ShortestPalindromicPath/input/13 - Loop at Start.txt +10 -0
- package/config/medium/ShortestPalindromicPath/input/14 - Loop at Goal.txt +11 -0
- package/config/medium/ShortestPalindromicPath/input/15 - Multiple Loops.txt +11 -0
- package/config/medium/ShortestPalindromicPath/input/16 - Long Sparse Snake.txt +53 -0
- package/config/medium/ShortestPalindromicPath/input/17 - Long Spiral.txt +53 -0
- package/config/medium/ShortestPalindromicPath/input/18 - Long Snake.txt +53 -0
- package/config/medium/ShortestPalindromicPath/input/19 - Many BFS Steps.txt +53 -0
- package/config/medium/ShortestPalindromicPath/input/20 - Many More BFS Steps.txt +53 -0
- package/config/medium/ShortestPalindromicPath/output/01 - Example 1.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/02 - Example 2.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/03 - No Diagonal.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/04 - Palindromic Required.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/05 - All 26 Characters.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/06 - Smallest.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/07 - Adjacent Start and Goal.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/08 - Uniform.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/09 - Odd.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/10 - Even.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/11 - Multiple Paths.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/12 - Loop at Middle.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/13 - Loop at Start.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/14 - Loop at Goal.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/15 - Multiple Loops.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/16 - Long Sparse Snake.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/17 - Long Spiral.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/18 - Long Snake.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/19 - Many BFS Steps.txt +1 -0
- package/config/medium/ShortestPalindromicPath/output/20 - Many More BFS Steps.txt +1 -0
- package/config/medium/Snowflakes/code/CGCode.cpp +23 -0
- package/config/medium/Snowflakes/code/CGCode.java +24 -0
- package/config/medium/Snowflakes/code/CGCode.js +12 -0
- package/config/medium/Snowflakes/code/CGCode.php +12 -0
- package/config/medium/Snowflakes/code/CGCode.ts +12 -0
- package/config/medium/Snowflakes/config.json +128 -0
- package/config/medium/Snowflakes/input/01 - Single Snowflake.txt +4 -0
- package/config/medium/Snowflakes/input/02 - Two Snowflakes.txt +6 -0
- package/config/medium/Snowflakes/input/03 - Simple Unique.txt +6 -0
- package/config/medium/Snowflakes/input/04 - Simple Rotation.txt +5 -0
- package/config/medium/Snowflakes/input/05 - Simple Flipped.txt +9 -0
- package/config/medium/Snowflakes/input/06 - All Rotations.txt +8 -0
- package/config/medium/Snowflakes/input/07 - All Orientations.txt +4 -0
- package/config/medium/Snowflakes/input/08 - Big Flake.txt +6 -0
- package/config/medium/Snowflakes/input/09 - Empty Sky.txt +31 -0
- package/config/medium/Snowflakes/input/10 - Micro-Lens.txt +2 -0
- package/config/medium/Snowflakes/input/11 - Micro-Lens 2.txt +2 -0
- package/config/medium/Snowflakes/input/12 - Single Flakes.txt +9 -0
- package/config/medium/Snowflakes/input/13 - Myth Busted.txt +21 -0
- package/config/medium/Snowflakes/input/14 - Myth Confirmed.txt +9 -0
- package/config/medium/Snowflakes/input/15 - Test 15.txt +49 -0
- package/config/medium/Snowflakes/input/16 - Test 16.txt +49 -0
- package/config/medium/Snowflakes/input/17 - Test 17.txt +51 -0
- package/config/medium/Snowflakes/input/18 - All But One.txt +31 -0
- package/config/medium/Snowflakes/input/19 - Random.txt +51 -0
- package/config/medium/Snowflakes/input/20 - Random 2.txt +21 -0
- package/config/medium/Snowflakes/input/21 - Random 3.txt +51 -0
- package/config/medium/Snowflakes/input/22 - Random 4.txt +51 -0
- package/config/medium/Snowflakes/input/23 - Many Hollow.txt +31 -0
- package/config/medium/Snowflakes/input/24 - Flakes in Flakes.txt +51 -0
- package/config/medium/Snowflakes/output/01 - Single Snowflake.txt +2 -0
- package/config/medium/Snowflakes/output/02 - Two Snowflakes.txt +2 -0
- package/config/medium/Snowflakes/output/03 - Simple Unique.txt +2 -0
- package/config/medium/Snowflakes/output/04 - Simple Rotation.txt +2 -0
- package/config/medium/Snowflakes/output/05 - Simple Flipped.txt +2 -0
- package/config/medium/Snowflakes/output/06 - All Rotations.txt +2 -0
- package/config/medium/Snowflakes/output/07 - All Orientations.txt +2 -0
- package/config/medium/Snowflakes/output/08 - Big Flake.txt +2 -0
- package/config/medium/Snowflakes/output/09 - Empty Sky.txt +2 -0
- package/config/medium/Snowflakes/output/10 - Micro-Lens.txt +2 -0
- package/config/medium/Snowflakes/output/11 - Micro-Lens 2.txt +2 -0
- package/config/medium/Snowflakes/output/12 - Single Flakes.txt +2 -0
- package/config/medium/Snowflakes/output/13 - Myth Busted.txt +2 -0
- package/config/medium/Snowflakes/output/14 - Myth Confirmed.txt +2 -0
- package/config/medium/Snowflakes/output/15 - Test 15.txt +2 -0
- package/config/medium/Snowflakes/output/16 - Test 16.txt +2 -0
- package/config/medium/Snowflakes/output/17 - Test 17.txt +2 -0
- package/config/medium/Snowflakes/output/18 - All But One.txt +2 -0
- package/config/medium/Snowflakes/output/19 - Random.txt +2 -0
- package/config/medium/Snowflakes/output/20 - Random 2.txt +2 -0
- package/config/medium/Snowflakes/output/21 - Random 3.txt +2 -0
- package/config/medium/Snowflakes/output/22 - Random 4.txt +2 -0
- package/config/medium/Snowflakes/output/23 - Many Hollow.txt +2 -0
- package/config/medium/Snowflakes/output/24 - Flakes in Flakes.txt +2 -0
- package/config/medium/TicTacToeEngine/code/CGCode.cpp +21 -0
- package/config/medium/TicTacToeEngine/code/CGCode.java +19 -0
- package/config/medium/TicTacToeEngine/code/CGCode.js +9 -0
- package/config/medium/TicTacToeEngine/code/CGCode.php +11 -0
- package/config/medium/TicTacToeEngine/code/CGCode.ts +9 -0
- package/config/medium/TicTacToeEngine/config.json +68 -0
- package/config/medium/TicTacToeEngine/input/01 - Winning Move.txt +4 -0
- package/config/medium/TicTacToeEngine/input/02 - Blocking the Win.txt +4 -0
- package/config/medium/TicTacToeEngine/input/03 - Decisive Move.txt +4 -0
- package/config/medium/TicTacToeEngine/input/04 - Drawn.txt +4 -0
- package/config/medium/TicTacToeEngine/input/05 - Optimal Win.txt +4 -0
- package/config/medium/TicTacToeEngine/input/06 - Winning Position.txt +4 -0
- package/config/medium/TicTacToeEngine/input/07 - Lost.txt +4 -0
- package/config/medium/TicTacToeEngine/input/08 - Hold the Draw.txt +4 -0
- package/config/medium/TicTacToeEngine/input/09 - Losing Position.txt +4 -0
- package/config/medium/TicTacToeEngine/input/10 - Free Reign.txt +4 -0
- package/config/medium/TicTacToeEngine/input/11 - Corner Strategy.txt +4 -0
- package/config/medium/TicTacToeEngine/input/12 - Starting Position.txt +4 -0
- package/config/medium/TicTacToeEngine/output/01 - Winning Move.txt +3 -0
- package/config/medium/TicTacToeEngine/output/02 - Blocking the Win.txt +3 -0
- package/config/medium/TicTacToeEngine/output/03 - Decisive Move.txt +3 -0
- package/config/medium/TicTacToeEngine/output/04 - Drawn.txt +3 -0
- package/config/medium/TicTacToeEngine/output/05 - Optimal Win.txt +3 -0
- package/config/medium/TicTacToeEngine/output/06 - Winning Position.txt +3 -0
- package/config/medium/TicTacToeEngine/output/07 - Lost.txt +3 -0
- package/config/medium/TicTacToeEngine/output/08 - Hold the Draw.txt +3 -0
- package/config/medium/TicTacToeEngine/output/09 - Losing Position.txt +3 -0
- package/config/medium/TicTacToeEngine/output/10 - Free Reign.txt +3 -0
- package/config/medium/TicTacToeEngine/output/11 - Corner Strategy.txt +3 -0
- package/config/medium/TicTacToeEngine/output/12 - Starting Position.txt +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.22.0] - 2025-12-31
|
|
8
|
+
### Added
|
|
9
|
+
- configuration for "Lines Intersections".
|
|
10
|
+
- configuration for "Tic Tac Toe Engine".
|
|
11
|
+
- configuration for "Shortest Palindromic Path".
|
|
12
|
+
- configuration for "Snowflakes".
|
|
13
|
+
- configuration for "Set Probabilities (Card Game)".
|
|
14
|
+
|
|
15
|
+
## [1.21.0] - 2025-11-30
|
|
16
|
+
### Added
|
|
17
|
+
- configuration for "Gauss and the Stolen Numbers".
|
|
18
|
+
- configuration for "Chocolate Bar Cut".
|
|
19
|
+
- configuration for "Agent X, Mission 3—The Bottle In The Sea".
|
|
20
|
+
- configuration for "Synchronized Scrambles".
|
|
21
|
+
- configuration for "nᵀᴴ Ramanujan Prime".
|
|
22
|
+
|
|
7
23
|
## [1.20.0] - 2025-10-31
|
|
8
24
|
### Added
|
|
9
25
|
- configuration for "Simple CPU Emulation 1".
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#include <iostream>
|
|
2
|
+
#include <string>
|
|
3
|
+
#include <vector>
|
|
4
|
+
#include <algorithm>
|
|
5
|
+
|
|
6
|
+
using namespace std;
|
|
7
|
+
|
|
8
|
+
int main()
|
|
9
|
+
{
|
|
10
|
+
int n;
|
|
11
|
+
cin >> n; cin.ignore();
|
|
12
|
+
for (int i = 0; i < n; i++) {
|
|
13
|
+
long long x;
|
|
14
|
+
long long y;
|
|
15
|
+
cin >> x >> y; cin.ignore();
|
|
16
|
+
}
|
|
17
|
+
for (int i = 0; i < n; i++) {
|
|
18
|
+
|
|
19
|
+
// Write an answer using cout. DON'T FORGET THE "<< endl"
|
|
20
|
+
// To debug: cerr << "Debug messages..." << endl;
|
|
21
|
+
|
|
22
|
+
cout << "nbSquares" << endl;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import java.util.*;
|
|
2
|
+
import java.io.*;
|
|
3
|
+
import java.math.*;
|
|
4
|
+
|
|
5
|
+
class Solution {
|
|
6
|
+
|
|
7
|
+
public static void main(String args[]) {
|
|
8
|
+
Scanner in = new Scanner(System.in);
|
|
9
|
+
int N = in.nextInt();
|
|
10
|
+
for (int i = 0; i < N; i++) {
|
|
11
|
+
long X = in.nextLong();
|
|
12
|
+
long Y = in.nextLong();
|
|
13
|
+
}
|
|
14
|
+
for (int i = 0; i < N; i++) {
|
|
15
|
+
|
|
16
|
+
// Write an answer using System.out.println()
|
|
17
|
+
// To debug: System.err.println("Debug messages...");
|
|
18
|
+
|
|
19
|
+
System.out.println("nbSquares");
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const N = parseInt(readline());
|
|
2
|
+
for (let i = 0; i < N; i++) {
|
|
3
|
+
var inputs = readline().split(' ');
|
|
4
|
+
const X = parseInt(inputs[0]);
|
|
5
|
+
const Y = parseInt(inputs[1]);
|
|
6
|
+
}
|
|
7
|
+
for (let i = 0; i < N; i++) {
|
|
8
|
+
|
|
9
|
+
// Write an answer using console.log()
|
|
10
|
+
// To debug: console.error('Debug messages...');
|
|
11
|
+
|
|
12
|
+
console.log('nbSquares');
|
|
13
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
fscanf(STDIN, "%d", $N);
|
|
3
|
+
for ($i = 0; $i < $N; $i++)
|
|
4
|
+
{
|
|
5
|
+
fscanf(STDIN, "%d %d", $X, $Y);
|
|
6
|
+
}
|
|
7
|
+
for ($i = 0; $i < $N; $i++)
|
|
8
|
+
{
|
|
9
|
+
|
|
10
|
+
// Write an answer using echo(). DON'T FORGET THE TRAILING \n
|
|
11
|
+
// To debug: error_log(var_export($var, true)); (equivalent to var_dump)
|
|
12
|
+
|
|
13
|
+
echo("nbSquares\n");
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const N: number = parseInt(readline());
|
|
2
|
+
for (let i = 0; i < N; i++) {
|
|
3
|
+
var inputs: string[] = readline().split(' ');
|
|
4
|
+
const X: number = parseInt(inputs[0]);
|
|
5
|
+
const Y: number = parseInt(inputs[1]);
|
|
6
|
+
}
|
|
7
|
+
for (let i = 0; i < N; i++) {
|
|
8
|
+
|
|
9
|
+
// Write an answer using console.log()
|
|
10
|
+
// To debug: console.error('Debug messages...');
|
|
11
|
+
|
|
12
|
+
console.log('nbSquares');
|
|
13
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"path": "easy/ChocolateBarCut",
|
|
3
|
+
"name": "Chocolate Bar Cut",
|
|
4
|
+
"alphanumName": "ChocolateBarCut",
|
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/chocolate-bar-cut",
|
|
6
|
+
"tests": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Small",
|
|
9
|
+
"alphanumName": "Small",
|
|
10
|
+
"file": "01 - Small.txt"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Line",
|
|
14
|
+
"alphanumName": "Line",
|
|
15
|
+
"file": "02 - Line.txt"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "Without vertices",
|
|
19
|
+
"alphanumName": "WithoutVertices",
|
|
20
|
+
"file": "03 - Without vertices.txt"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "Some vertices",
|
|
24
|
+
"alphanumName": "SomeVertices",
|
|
25
|
+
"file": "04 - Some vertices.txt"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "Big",
|
|
29
|
+
"alphanumName": "Big",
|
|
30
|
+
"file": "05 - Big.txt"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "Huge",
|
|
34
|
+
"alphanumName": "Huge",
|
|
35
|
+
"file": "06 - Huge.txt"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "Astronomical",
|
|
39
|
+
"alphanumName": "Astronomical",
|
|
40
|
+
"file": "07 - Astronomical.txt"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "Gargantuan",
|
|
44
|
+
"alphanumName": "Gargantuan",
|
|
45
|
+
"file": "08 - Gargantuan.txt"
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
10
|
|
2
|
+
22307889344 265996529728
|
|
3
|
+
534801466035 784401942720
|
|
4
|
+
634131957480 56058396198
|
|
5
|
+
112500984000 491653001130
|
|
6
|
+
874573868220 589421506596
|
|
7
|
+
829605092250 132435835818
|
|
8
|
+
9149624612 34380961878
|
|
9
|
+
349361265817 421406345802
|
|
10
|
+
234250079608 214837743206
|
|
11
|
+
91113617677 97428379570
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
50
|
|
2
|
+
347192885 1299954712
|
|
3
|
+
987654321 123456789
|
|
4
|
+
230584300921 34359738367
|
|
5
|
+
999999937 1000000007
|
|
6
|
+
4294967295 8589934590
|
|
7
|
+
712837465 1982374654
|
|
8
|
+
56800235584 140737488355
|
|
9
|
+
3141592653 2718281828
|
|
10
|
+
922337203685 123456789012
|
|
11
|
+
600000000000 900000000000
|
|
12
|
+
444444444444 666666666666
|
|
13
|
+
987654320123 111111111111
|
|
14
|
+
135791113151 246802468024
|
|
15
|
+
123123123123 321321321321
|
|
16
|
+
999999999989 999999999959
|
|
17
|
+
700000000019 350000000009
|
|
18
|
+
876543219876 234567891234
|
|
19
|
+
503316480 939524096
|
|
20
|
+
112589990684 225179981368
|
|
21
|
+
140737488355 562949953421
|
|
22
|
+
6758899123 1234567009
|
|
23
|
+
248529385028 283746278364
|
|
24
|
+
349875349875 587349587349
|
|
25
|
+
197531864197 864197531864
|
|
26
|
+
222222222222 999999999999
|
|
27
|
+
101010101010 202020202020
|
|
28
|
+
314159265358 979323846264
|
|
29
|
+
490000000000 700000000000
|
|
30
|
+
14916253649 17283950505
|
|
31
|
+
666666666667 444444444443
|
|
32
|
+
100000000003 900000000001
|
|
33
|
+
987654321987 123123123123
|
|
34
|
+
825732509281 237462837462
|
|
35
|
+
400000000001 200000000001
|
|
36
|
+
123456789123 987654321987
|
|
37
|
+
112358132134 181637114678
|
|
38
|
+
141421356237 173205080756
|
|
39
|
+
271828182845 314159265358
|
|
40
|
+
4294967297 8589934593
|
|
41
|
+
900719925474 450359962737
|
|
42
|
+
122978293824 245956587648
|
|
43
|
+
999983 999979
|
|
44
|
+
123457 999983
|
|
45
|
+
1000003 2000006
|
|
46
|
+
998244353 1000000007
|
|
47
|
+
184467440737 368934881474
|
|
48
|
+
9999999967 8888888879
|
|
49
|
+
35953862697 69814636543
|
|
50
|
+
555555555555 333333333333
|
|
51
|
+
987654320987 998877665544
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
1647147596
|
|
2
|
+
1111111101
|
|
3
|
+
264944039287
|
|
4
|
+
1999999943
|
|
5
|
+
8589934590
|
|
6
|
+
2695212118
|
|
7
|
+
197537723938
|
|
8
|
+
5859874480
|
|
9
|
+
1045793992696
|
|
10
|
+
1200000000000
|
|
11
|
+
888888888888
|
|
12
|
+
1098765431233
|
|
13
|
+
382593581174
|
|
14
|
+
441441441441
|
|
15
|
+
1999999999947
|
|
16
|
+
1050000000027
|
|
17
|
+
1111111111104
|
|
18
|
+
1409286144
|
|
19
|
+
225179981368
|
|
20
|
+
703687441775
|
|
21
|
+
7993466131
|
|
22
|
+
532275663388
|
|
23
|
+
937215937215
|
|
24
|
+
1061729396060
|
|
25
|
+
1111111111110
|
|
26
|
+
202020202020
|
|
27
|
+
1293483111620
|
|
28
|
+
1120000000000
|
|
29
|
+
32200204153
|
|
30
|
+
1111111111109
|
|
31
|
+
1000000000003
|
|
32
|
+
1110777445107
|
|
33
|
+
1063195346720
|
|
34
|
+
600000000001
|
|
35
|
+
1111111111107
|
|
36
|
+
293995246810
|
|
37
|
+
314626436992
|
|
38
|
+
585987448202
|
|
39
|
+
12884901889
|
|
40
|
+
900719925474
|
|
41
|
+
245956587648
|
|
42
|
+
1999961
|
|
43
|
+
1123439
|
|
44
|
+
2000006
|
|
45
|
+
1998244359
|
|
46
|
+
368934881474
|
|
47
|
+
18888888845
|
|
48
|
+
105768499239
|
|
49
|
+
777777777777
|
|
50
|
+
1986531986530
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#include <iostream>
|
|
2
|
+
#include <string>
|
|
3
|
+
#include <vector>
|
|
4
|
+
#include <algorithm>
|
|
5
|
+
|
|
6
|
+
using namespace std;
|
|
7
|
+
|
|
8
|
+
int main()
|
|
9
|
+
{
|
|
10
|
+
int n;
|
|
11
|
+
cin >> n; cin.ignore();
|
|
12
|
+
long long s;
|
|
13
|
+
cin >> s; cin.ignore();
|
|
14
|
+
long long q;
|
|
15
|
+
cin >> q; cin.ignore();
|
|
16
|
+
|
|
17
|
+
// Write an answer using cout. DON'T FORGET THE "<< endl"
|
|
18
|
+
// To debug: cerr << "Debug messages..." << endl;
|
|
19
|
+
|
|
20
|
+
cout << "answer" << endl;
|
|
21
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import java.util.*;
|
|
2
|
+
import java.io.*;
|
|
3
|
+
import java.math.*;
|
|
4
|
+
|
|
5
|
+
class Solution {
|
|
6
|
+
|
|
7
|
+
public static void main(String args[]) {
|
|
8
|
+
Scanner in = new Scanner(System.in);
|
|
9
|
+
int N = in.nextInt();
|
|
10
|
+
long S = in.nextLong();
|
|
11
|
+
long Q = in.nextLong();
|
|
12
|
+
|
|
13
|
+
// Write an answer using System.out.println()
|
|
14
|
+
// To debug: System.err.println("Debug messages...");
|
|
15
|
+
|
|
16
|
+
System.out.println("answer");
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"path": "easy/GaussAndTheStolenNumbers",
|
|
3
|
+
"name": "Gauss and the Stolen Numbers",
|
|
4
|
+
"alphanumName": "GaussAndTheStolenNumbers",
|
|
5
|
+
"link": "https://www.codingame.com/ide/puzzle/gauss-and-the-stolen-numbers",
|
|
6
|
+
"tests": [
|
|
7
|
+
{
|
|
8
|
+
"name": "General number",
|
|
9
|
+
"alphanumName": "GeneralNumber",
|
|
10
|
+
"file": "01 - General number.txt"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Lucky 7",
|
|
14
|
+
"alphanumName": "Lucky7",
|
|
15
|
+
"file": "02 - Lucky 7.txt"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "Lets go bigger!",
|
|
19
|
+
"alphanumName": "LetsGoBigger",
|
|
20
|
+
"file": "03 - Lets go bigger!.txt"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "Extreme ends",
|
|
24
|
+
"alphanumName": "ExtremeEnds",
|
|
25
|
+
"file": "04 - Extreme ends.txt"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "Middle pair",
|
|
29
|
+
"alphanumName": "MiddlePair",
|
|
30
|
+
"file": "05 - Middle pair.txt"
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3 8
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3 6
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
27 28
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1 100000
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
50000 50001
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#include <iostream>
|
|
2
|
+
#include <string>
|
|
3
|
+
#include <vector>
|
|
4
|
+
#include <algorithm>
|
|
5
|
+
|
|
6
|
+
using namespace std;
|
|
7
|
+
|
|
8
|
+
int main()
|
|
9
|
+
{
|
|
10
|
+
int n;
|
|
11
|
+
cin >> n; cin.ignore();
|
|
12
|
+
for (int i = 0; i < n; i++) {
|
|
13
|
+
int x1;
|
|
14
|
+
int y1;
|
|
15
|
+
int x2;
|
|
16
|
+
int y2;
|
|
17
|
+
cin >> x1 >> y1 >> x2 >> y2; cin.ignore();
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// Write an answer using cout. DON'T FORGET THE "<< endl"
|
|
21
|
+
// To debug: cerr << "Debug messages..." << endl;
|
|
22
|
+
|
|
23
|
+
cout << "0" << endl;
|
|
24
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import java.util.*;
|
|
2
|
+
import java.io.*;
|
|
3
|
+
import java.math.*;
|
|
4
|
+
|
|
5
|
+
class Solution {
|
|
6
|
+
|
|
7
|
+
public static void main(String args[]) {
|
|
8
|
+
Scanner in = new Scanner(System.in);
|
|
9
|
+
int n = in.nextInt();
|
|
10
|
+
for (int i = 0; i < n; i++) {
|
|
11
|
+
int x1 = in.nextInt();
|
|
12
|
+
int y1 = in.nextInt();
|
|
13
|
+
int x2 = in.nextInt();
|
|
14
|
+
int y2 = in.nextInt();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// Write an answer using System.out.println()
|
|
18
|
+
// To debug: System.err.println("Debug messages...");
|
|
19
|
+
|
|
20
|
+
System.out.println("0");
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const n = parseInt(readline());
|
|
2
|
+
for (let i = 0; i < n; i++) {
|
|
3
|
+
var inputs = readline().split(' ');
|
|
4
|
+
const x1 = parseInt(inputs[0]);
|
|
5
|
+
const y1 = parseInt(inputs[1]);
|
|
6
|
+
const x2 = parseInt(inputs[2]);
|
|
7
|
+
const y2 = parseInt(inputs[3]);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// Write an answer using console.log()
|
|
11
|
+
// To debug: console.error('Debug messages...');
|
|
12
|
+
|
|
13
|
+
console.log('0');
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
fscanf(STDIN, "%d", $n);
|
|
3
|
+
for ($i = 0; $i < $n; $i++)
|
|
4
|
+
{
|
|
5
|
+
fscanf(STDIN, "%d %d %d %d", $x1, $y1, $x2, $y2);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
// Write an answer using echo(). DON'T FORGET THE TRAILING \n
|
|
9
|
+
// To debug: error_log(var_export($var, true)); (equivalent to var_dump)
|
|
10
|
+
|
|
11
|
+
echo("0\n");
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const n: number = parseInt(readline());
|
|
2
|
+
for (let i = 0; i < n; i++) {
|
|
3
|
+
var inputs: string[] = readline().split(' ');
|
|
4
|
+
const x1: number = parseInt(inputs[0]);
|
|
5
|
+
const y1: number = parseInt(inputs[1]);
|
|
6
|
+
const x2: number = parseInt(inputs[2]);
|
|
7
|
+
const y2: number = parseInt(inputs[3]);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// Write an answer using console.log()
|
|
11
|
+
// To debug: console.error('Debug messages...');
|
|
12
|
+
|
|
13
|
+
console.log('0');
|