結果

問題 No.63 ポッキーゲーム
ユーザー ikawaiikawai
提出日時 2023-09-05 15:28:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-06-23 11:01:04
合計ジャッジ時間 7,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,136 KB
testcase_01 AC 127 ms
53,836 KB
testcase_02 WA -
testcase_03 AC 128 ms
53,632 KB
testcase_04 AC 127 ms
54,112 KB
testcase_05 WA -
testcase_06 AC 129 ms
54,056 KB
testcase_07 AC 135 ms
54,224 KB
testcase_08 WA -
testcase_09 AC 134 ms
54,308 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 141 ms
53,832 KB
testcase_13 AC 515 ms
53,984 KB
testcase_14 AC 139 ms
54,180 KB
testcase_15 AC 141 ms
53,928 KB
testcase_16 AC 132 ms
54,160 KB
testcase_17 AC 488 ms
53,940 KB
testcase_18 AC 131 ms
53,944 KB
testcase_19 AC 183 ms
53,892 KB
testcase_20 AC 140 ms
54,136 KB
testcase_21 AC 148 ms
54,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Wandbox
{
    public static void main(String[] args)
    {
    	Scanner sc = new Scanner(System.in);
    	
    	int l = sc.nextInt();
    	int k = sc.nextInt();
    	int ans = 0;
    	l /= 2;
    	
    	while (l > 0) {
    		l -= k;
    		if (l <= 0) {
    			break;
    		} 
    		ans += k;
    	} 
    	
    	System.out.println(ans);
    }
}
0