結果

問題 No.63 ポッキーゲーム
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 14:08:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 424 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-10-06 10:11:24
合計ジャッジ時間 6,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,912 KB
testcase_01 AC 104 ms
52,732 KB
testcase_02 AC 109 ms
54,480 KB
testcase_03 AC 105 ms
52,744 KB
testcase_04 AC 119 ms
54,176 KB
testcase_05 AC 125 ms
53,900 KB
testcase_06 AC 104 ms
52,528 KB
testcase_07 AC 128 ms
54,060 KB
testcase_08 AC 122 ms
53,808 KB
testcase_09 AC 126 ms
53,916 KB
testcase_10 AC 131 ms
54,016 KB
testcase_11 AC 424 ms
54,196 KB
testcase_12 AC 128 ms
53,820 KB
testcase_13 AC 400 ms
53,948 KB
testcase_14 AC 134 ms
53,836 KB
testcase_15 AC 134 ms
53,936 KB
testcase_16 AC 125 ms
53,764 KB
testcase_17 AC 390 ms
54,376 KB
testcase_18 AC 115 ms
52,804 KB
testcase_19 AC 165 ms
54,012 KB
testcase_20 AC 130 ms
54,040 KB
testcase_21 AC 134 ms
53,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int length = sc.nextInt();
		int a = sc.nextInt();
		int yu = 0;
		int ha = 0;
		while (true) {
			if (length-a*2<=0) {break;}
			length -= a*2;
			yu += a;
			ha += a;
		}
		System.out.println(yu);
	}
}
0