結果

問題 No.63 ポッキーゲーム
ユーザー kazapyon27kazapyon27
提出日時 2017-05-07 22:44:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 480 ms / 5,000 ms
コード長 408 bytes
コンパイル時間 3,039 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-12-24 05:29:22
合計ジャッジ時間 7,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,256 KB
testcase_01 AC 107 ms
40,224 KB
testcase_02 AC 120 ms
41,076 KB
testcase_03 AC 117 ms
40,976 KB
testcase_04 AC 112 ms
40,052 KB
testcase_05 AC 119 ms
41,160 KB
testcase_06 AC 120 ms
41,108 KB
testcase_07 AC 116 ms
40,960 KB
testcase_08 AC 118 ms
41,100 KB
testcase_09 AC 110 ms
40,080 KB
testcase_10 AC 126 ms
40,964 KB
testcase_11 AC 480 ms
41,092 KB
testcase_12 AC 137 ms
41,228 KB
testcase_13 AC 469 ms
41,096 KB
testcase_14 AC 133 ms
41,116 KB
testcase_15 AC 131 ms
41,228 KB
testcase_16 AC 121 ms
41,248 KB
testcase_17 AC 441 ms
41,236 KB
testcase_18 AC 124 ms
41,184 KB
testcase_19 AC 161 ms
41,512 KB
testcase_20 AC 112 ms
40,352 KB
testcase_21 AC 133 ms
41,124 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