結果

問題 No.63 ポッキーゲーム
ユーザー jin128jin128
提出日時 2016-08-25 21:10:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 289 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 73,616 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-11-08 02:23:59
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,996 KB
testcase_01 AC 120 ms
39,880 KB
testcase_02 AC 133 ms
41,304 KB
testcase_03 AC 133 ms
41,544 KB
testcase_04 AC 130 ms
41,264 KB
testcase_05 AC 127 ms
41,284 KB
testcase_06 AC 130 ms
41,396 KB
testcase_07 AC 130 ms
41,004 KB
testcase_08 AC 131 ms
41,316 KB
testcase_09 AC 132 ms
40,968 KB
testcase_10 AC 117 ms
40,264 KB
testcase_11 AC 129 ms
41,072 KB
testcase_12 AC 120 ms
40,052 KB
testcase_13 WA -
testcase_14 AC 116 ms
40,152 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 116 ms
40,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class S16_pochygame{
  public static void main(String[] args){
    int l, k, t;
    Scanner scn = new Scanner(System.in);

    l = scn.nextInt();
    k = scn.nextInt();

    t = l / (2 * k);
    if(l == (2 * k ))
      t--;

    System.out.println(k * t);
  }
}
0