結果

問題 No.63 ポッキーゲーム
ユーザー kazapyon27kazapyon27
提出日時 2017-05-07 22:44:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 438 ms / 5,000 ms
コード長 408 bytes
コンパイル時間 3,039 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 41,216 KB
最終ジャッジ日時 2024-06-06 13:36:56
合計ジャッジ時間 7,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,216 KB
testcase_01 AC 113 ms
40,928 KB
testcase_02 AC 108 ms
40,892 KB
testcase_03 AC 104 ms
40,052 KB
testcase_04 AC 106 ms
41,172 KB
testcase_05 AC 100 ms
40,040 KB
testcase_06 AC 116 ms
40,932 KB
testcase_07 AC 98 ms
40,056 KB
testcase_08 AC 103 ms
39,940 KB
testcase_09 AC 112 ms
41,128 KB
testcase_10 AC 114 ms
41,056 KB
testcase_11 AC 438 ms
40,900 KB
testcase_12 AC 119 ms
40,172 KB
testcase_13 AC 430 ms
40,112 KB
testcase_14 AC 113 ms
41,080 KB
testcase_15 AC 110 ms
40,136 KB
testcase_16 AC 108 ms
40,920 KB
testcase_17 AC 419 ms
41,032 KB
testcase_18 AC 112 ms
40,200 KB
testcase_19 AC 144 ms
40,168 KB
testcase_20 AC 117 ms
41,092 KB
testcase_21 AC 125 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.5 No.63 ポッキーゲーム*/
import java.util.*;
public class NO63 {
	public static void main(String[] args) {
		int p_len,eat_len,Yuchan=0;
		try(Scanner input = new Scanner(System.in)){
			p_len=input.nextInt();
			eat_len=input.nextInt();
			while(p_len>0){
				p_len-=eat_len*2;
				Yuchan++;
			}
			System.out.println((Yuchan-1)*eat_len);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0