結果

問題 No.63 ポッキーゲーム
ユーザー リチウムリチウム
提出日時 2014-11-11 23:26:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 350 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 2,932 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 54,048 KB
最終ジャッジ日時 2024-06-06 12:52:58
合計ジャッジ時間 7,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,048 KB
testcase_01 AC 120 ms
53,976 KB
testcase_02 AC 118 ms
53,888 KB
testcase_03 AC 126 ms
53,772 KB
testcase_04 AC 118 ms
53,796 KB
testcase_05 AC 118 ms
53,976 KB
testcase_06 AC 107 ms
52,908 KB
testcase_07 AC 121 ms
54,044 KB
testcase_08 AC 119 ms
53,896 KB
testcase_09 AC 124 ms
53,900 KB
testcase_10 AC 128 ms
53,800 KB
testcase_11 AC 350 ms
53,808 KB
testcase_12 AC 121 ms
52,984 KB
testcase_13 AC 347 ms
54,008 KB
testcase_14 AC 124 ms
52,692 KB
testcase_15 AC 133 ms
53,796 KB
testcase_16 AC 116 ms
52,892 KB
testcase_17 AC 338 ms
53,832 KB
testcase_18 AC 127 ms
53,924 KB
testcase_19 AC 158 ms
54,020 KB
testcase_20 AC 131 ms
53,696 KB
testcase_21 AC 132 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class ok{
	public static void main(String[] args) {
		Scanner sc=new Scanner (System.in);
		int L=sc.nextInt();
		int K=sc.nextInt();
		int ans=0;
		while(true){
			if(L>K*2){
				ans+=K;
				L-=K*2;
			}
			else{
				break;
			}
		}
		
		System.out.println(ans);
	}}
0