結果

問題 No.63 ポッキーゲーム
ユーザー mits58mits58
提出日時 2016-07-02 13:31:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 359 ms / 5,000 ms
コード長 335 bytes
コンパイル時間 1,726 ms
コンパイル使用メモリ 73,476 KB
実行使用メモリ 41,356 KB
最終ジャッジ日時 2024-06-06 13:22:01
合計ジャッジ時間 6,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,236 KB
testcase_01 AC 99 ms
41,308 KB
testcase_02 AC 113 ms
40,056 KB
testcase_03 AC 113 ms
40,940 KB
testcase_04 AC 113 ms
41,244 KB
testcase_05 AC 110 ms
40,952 KB
testcase_06 AC 103 ms
40,964 KB
testcase_07 AC 120 ms
40,956 KB
testcase_08 AC 119 ms
40,876 KB
testcase_09 AC 122 ms
41,356 KB
testcase_10 AC 120 ms
41,248 KB
testcase_11 AC 332 ms
41,108 KB
testcase_12 AC 115 ms
40,076 KB
testcase_13 AC 359 ms
41,044 KB
testcase_14 AC 108 ms
41,044 KB
testcase_15 AC 113 ms
40,184 KB
testcase_16 AC 108 ms
40,204 KB
testcase_17 AC 345 ms
40,992 KB
testcase_18 AC 114 ms
39,992 KB
testcase_19 AC 149 ms
41,288 KB
testcase_20 AC 110 ms
41,160 KB
testcase_21 AC 120 ms
40,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			long l=sc.nextLong();
			long k=sc.nextLong();
			long ans=0;
			while(true){
				if(l-2*k<=0) break;
				else{
					ans+=k;
					l-=2*k;
				}
			}
			System.out.println(ans);
		}
	}
}
0