結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,240 KB
testcase_01 AC 107 ms
41,016 KB
testcase_02 AC 109 ms
40,992 KB
testcase_03 AC 107 ms
41,036 KB
testcase_04 AC 107 ms
41,072 KB
testcase_05 AC 112 ms
41,044 KB
testcase_06 AC 119 ms
41,060 KB
testcase_07 AC 105 ms
40,968 KB
testcase_08 AC 108 ms
41,040 KB
testcase_09 AC 101 ms
40,104 KB
testcase_10 AC 114 ms
41,276 KB
testcase_11 AC 435 ms
39,928 KB
testcase_12 AC 126 ms
40,908 KB
testcase_13 AC 439 ms
41,304 KB
testcase_14 AC 119 ms
41,368 KB
testcase_15 AC 104 ms
39,772 KB
testcase_16 AC 101 ms
39,980 KB
testcase_17 AC 433 ms
41,152 KB
testcase_18 AC 111 ms
41,036 KB
testcase_19 AC 154 ms
40,160 KB
testcase_20 AC 121 ms
40,828 KB
testcase_21 AC 124 ms
40,820 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;
		}
			System.out.println(K * (i - 1));
	}
}
0