結果
問題 | No.63 ポッキーゲーム |
ユーザー | jonki324 |
提出日時 | 2018-06-04 11:25:33 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 441 bytes |
コンパイル時間 | 1,925 ms |
コンパイル使用メモリ | 74,048 KB |
実行使用メモリ | 56,344 KB |
最終ジャッジ日時 | 2024-06-30 09:34:21 |
合計ジャッジ時間 | 6,497 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 22 |
ソースコード
import java.util.Scanner; class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int l = scan.nextInt(); int k = scan.nextInt(); int c = 0; while (true) { l -= 2 * k; if (l <= 0) { break; } else { c++; } } System.err.println(c * k); scan.close(); } }