結果

問題 No.63 ポッキーゲーム
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 23:02:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 353 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 3,547 ms
コンパイル使用メモリ 79,760 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-07-04 23:36:57
合計ジャッジ時間 7,449 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,992 KB
testcase_01 AC 120 ms
40,948 KB
testcase_02 AC 119 ms
40,988 KB
testcase_03 AC 118 ms
40,460 KB
testcase_04 AC 118 ms
41,528 KB
testcase_05 AC 119 ms
39,956 KB
testcase_06 AC 113 ms
40,188 KB
testcase_07 AC 120 ms
41,364 KB
testcase_08 AC 119 ms
41,124 KB
testcase_09 AC 124 ms
41,288 KB
testcase_10 AC 123 ms
41,584 KB
testcase_11 AC 352 ms
40,364 KB
testcase_12 AC 125 ms
40,972 KB
testcase_13 AC 353 ms
40,372 KB
testcase_14 AC 112 ms
40,216 KB
testcase_15 AC 125 ms
41,532 KB
testcase_16 AC 131 ms
41,316 KB
testcase_17 AC 343 ms
41,208 KB
testcase_18 AC 120 ms
40,976 KB
testcase_19 AC 153 ms
41,112 KB
testcase_20 AC 126 ms
41,060 KB
testcase_21 AC 133 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Answer {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);

        int length = Integer.valueOf(sc.next());
        int oneTime = Integer.valueOf(sc.next());

        int i=0;
        while(oneTime*2 < length) {
        	length -= oneTime*2;
        	i++;
        }

        System.out.println(i*oneTime);
	}
}
0