結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,072 KB
testcase_01 AC 116 ms
41,384 KB
testcase_02 AC 116 ms
41,296 KB
testcase_03 AC 102 ms
40,016 KB
testcase_04 AC 116 ms
40,936 KB
testcase_05 AC 118 ms
41,016 KB
testcase_06 AC 115 ms
41,072 KB
testcase_07 AC 114 ms
41,004 KB
testcase_08 AC 107 ms
40,064 KB
testcase_09 AC 111 ms
40,536 KB
testcase_10 AC 117 ms
40,352 KB
testcase_11 AC 461 ms
40,976 KB
testcase_12 AC 131 ms
41,216 KB
testcase_13 AC 460 ms
40,972 KB
testcase_14 AC 126 ms
41,092 KB
testcase_15 AC 120 ms
40,504 KB
testcase_16 AC 119 ms
41,212 KB
testcase_17 AC 438 ms
41,260 KB
testcase_18 AC 121 ms
41,088 KB
testcase_19 AC 166 ms
41,140 KB
testcase_20 AC 126 ms
41,272 KB
testcase_21 AC 138 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*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