結果
問題 | No.63 ポッキーゲーム |
ユーザー | SagToki |
提出日時 | 2018-05-14 15:54:12 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,379 bytes |
コンパイル時間 | 4,439 ms |
コンパイル使用メモリ | 77,900 KB |
実行使用メモリ | 41,568 KB |
最終ジャッジ日時 | 2024-06-28 11:43:50 |
合計ジャッジ時間 | 8,593 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
41,276 KB |
testcase_01 | AC | 135 ms
41,268 KB |
testcase_02 | AC | 134 ms
41,340 KB |
testcase_03 | AC | 135 ms
41,004 KB |
testcase_04 | AC | 146 ms
41,184 KB |
testcase_05 | AC | 146 ms
41,568 KB |
testcase_06 | AC | 151 ms
40,924 KB |
testcase_07 | AC | 143 ms
41,416 KB |
testcase_08 | AC | 140 ms
41,248 KB |
testcase_09 | AC | 144 ms
41,404 KB |
testcase_10 | AC | 145 ms
41,420 KB |
testcase_11 | AC | 150 ms
41,516 KB |
testcase_12 | AC | 135 ms
41,024 KB |
testcase_13 | WA | - |
testcase_14 | AC | 135 ms
41,536 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
import java.util.Scanner; import java.util.InputMismatchException; public class PockyGame { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); try{ int L = scanner.nextInt(); int K = scanner.nextInt(); int Result = 0; if(L < 1 || L > Math.pow(10,9)){ System.out.println("Lは1から1000000000の範囲で入力してください"); System.exit(0); } if(K < 1 || K > 50){ System.out.println("Kは1から50の範囲で入力してください"); System.exit(0); } if(L % K == 0){ if( L % 2 == 0){ Result = (int) Math.ceil(L / K); Result = (Result - 2) * L / 2; }else{ Result = (int) Math.ceil(L / K); Result = (Result - 1) * K / 2; } }else{ Result = L / (2 * K); Result *= K; } System.out.println(Result); }catch(InputMismatchException e){ System.out.println("数値を入力してください"); }catch(Exception E){ System.out.println("想定外のエラーです"); } } }