結果

問題 No.63 ポッキーゲーム
ユーザー papipenpapipen
提出日時 2017-03-26 16:16:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 438 ms / 5,000 ms
コード長 345 bytes
コンパイル時間 1,716 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 41,180 KB
最終ジャッジ日時 2024-06-06 13:33:29
合計ジャッジ時間 5,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,120 KB
testcase_01 AC 107 ms
40,880 KB
testcase_02 AC 106 ms
41,088 KB
testcase_03 AC 93 ms
39,904 KB
testcase_04 AC 106 ms
40,852 KB
testcase_05 AC 107 ms
40,412 KB
testcase_06 AC 106 ms
40,896 KB
testcase_07 AC 99 ms
39,984 KB
testcase_08 AC 102 ms
40,012 KB
testcase_09 AC 114 ms
40,968 KB
testcase_10 AC 108 ms
40,060 KB
testcase_11 AC 427 ms
40,300 KB
testcase_12 AC 111 ms
39,928 KB
testcase_13 AC 438 ms
41,032 KB
testcase_14 AC 128 ms
41,180 KB
testcase_15 AC 109 ms
40,640 KB
testcase_16 AC 112 ms
40,916 KB
testcase_17 AC 419 ms
41,176 KB
testcase_18 AC 119 ms
40,948 KB
testcase_19 AC 150 ms
40,768 KB
testcase_20 AC 116 ms
41,084 KB
testcase_21 AC 124 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class pokkii{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int L = s.nextInt();
		int K = s.nextInt();
		int i = 0;
		int sum = 0;
		while(K * 2 * i < L){
			i++;
			sum += K * 2;
		}
		if(sum >= L){
			System.out.println(K * (i - 1));
		}else{
			System.out.println(K * i);
		}
	}
}
0