結果

問題 No.63 ポッキーゲーム
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-02-24 02:59:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 444 ms / 5,000 ms
コード長 302 bytes
コンパイル時間 1,816 ms
コンパイル使用メモリ 75,040 KB
実行使用メモリ 54,168 KB
最終ジャッジ日時 2024-06-06 13:14:10
合計ジャッジ時間 6,173 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,524 KB
testcase_01 AC 110 ms
53,972 KB
testcase_02 AC 100 ms
52,688 KB
testcase_03 AC 119 ms
53,912 KB
testcase_04 AC 119 ms
53,912 KB
testcase_05 AC 119 ms
54,024 KB
testcase_06 AC 119 ms
54,168 KB
testcase_07 AC 105 ms
53,008 KB
testcase_08 AC 118 ms
53,876 KB
testcase_09 AC 117 ms
53,888 KB
testcase_10 AC 119 ms
53,980 KB
testcase_11 AC 444 ms
53,080 KB
testcase_12 AC 120 ms
53,972 KB
testcase_13 AC 442 ms
52,732 KB
testcase_14 AC 115 ms
53,184 KB
testcase_15 AC 125 ms
54,088 KB
testcase_16 AC 117 ms
54,008 KB
testcase_17 AC 433 ms
53,928 KB
testcase_18 AC 119 ms
53,868 KB
testcase_19 AC 173 ms
53,972 KB
testcase_20 AC 128 ms
54,144 KB
testcase_21 AC 133 ms
53,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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