結果

問題 No.63 ポッキーゲーム
ユーザー eagleeagle
提出日時 2022-05-26 15:32:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 332 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 1,852 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-09-20 15:01:18
合計ジャッジ時間 5,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,888 KB
testcase_01 AC 110 ms
41,176 KB
testcase_02 AC 99 ms
40,016 KB
testcase_03 AC 112 ms
41,044 KB
testcase_04 AC 121 ms
41,056 KB
testcase_05 AC 120 ms
41,196 KB
testcase_06 AC 95 ms
39,512 KB
testcase_07 AC 117 ms
41,168 KB
testcase_08 AC 116 ms
41,184 KB
testcase_09 AC 123 ms
41,568 KB
testcase_10 AC 108 ms
40,588 KB
testcase_11 AC 332 ms
40,548 KB
testcase_12 AC 109 ms
40,184 KB
testcase_13 AC 328 ms
39,856 KB
testcase_14 AC 110 ms
39,996 KB
testcase_15 AC 111 ms
39,952 KB
testcase_16 AC 120 ms
41,448 KB
testcase_17 AC 327 ms
41,048 KB
testcase_18 AC 118 ms
41,176 KB
testcase_19 AC 143 ms
41,276 KB
testcase_20 AC 109 ms
40,200 KB
testcase_21 AC 116 ms
40,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//ポッキーの長さ
		int L = sc.nextInt();
		//二人が食べる距離
		int K = sc.nextInt();
		//ユウちゃんが食べるポッキーの長さ
		int ans = 0;
		//ポッキーの残りの長さ
		int pocky = L;
		while(true) {
			if(pocky - K * 2 <= 0) {
				break;
			}
			pocky -= K * 2;
			ans += K;
		}
		System.out.println(ans);
	}
}
0