結果

問題 No.63 ポッキーゲーム
ユーザー juger_jvjuger_jv
提出日時 2016-05-03 20:35:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 309 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 1,793 ms
コンパイル使用メモリ 72,816 KB
実行使用メモリ 37,704 KB
最終ジャッジ日時 2024-06-06 13:18:05
合計ジャッジ時間 4,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,884 KB
testcase_01 AC 46 ms
36,876 KB
testcase_02 AC 46 ms
37,012 KB
testcase_03 AC 47 ms
36,636 KB
testcase_04 AC 47 ms
36,688 KB
testcase_05 AC 47 ms
36,704 KB
testcase_06 AC 46 ms
36,904 KB
testcase_07 AC 48 ms
36,968 KB
testcase_08 AC 47 ms
36,716 KB
testcase_09 AC 57 ms
36,984 KB
testcase_10 AC 62 ms
37,352 KB
testcase_11 AC 300 ms
37,372 KB
testcase_12 AC 66 ms
37,612 KB
testcase_13 AC 309 ms
37,704 KB
testcase_14 AC 67 ms
37,504 KB
testcase_15 AC 63 ms
37,612 KB
testcase_16 AC 61 ms
37,544 KB
testcase_17 AC 290 ms
37,544 KB
testcase_18 AC 69 ms
37,344 KB
testcase_19 AC 93 ms
37,608 KB
testcase_20 AC 62 ms
37,480 KB
testcase_21 AC 72 ms
37,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
class no63
{
    public static void main(String args[])throws IOException
    {
	BufferedReader sc=new BufferedReader(new InputStreamReader(System.in));
	String lk[]=sc.readLine().split(" ");
	int l,k,ans=0;
	l=Integer.parseInt(lk[0]);
	k=Integer.parseInt(lk[1]);
        while(l>0)
	    {
		l-=2*k;
		if(l<=0)break;
		ans++;
	    }
	System.out.println(ans*k);
    }
}
0