結果

問題 No.63 ポッキーゲーム
ユーザー kazapyon27kazapyon27
提出日時 2017-05-07 22:45:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 477 ms / 5,000 ms
コード長 403 bytes
コンパイル時間 3,051 ms
コンパイル使用メモリ 79,156 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-06-06 13:37:06
合計ジャッジ時間 7,715 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,260 KB
testcase_01 AC 119 ms
41,024 KB
testcase_02 AC 125 ms
41,224 KB
testcase_03 AC 123 ms
41,104 KB
testcase_04 AC 117 ms
40,992 KB
testcase_05 AC 118 ms
39,968 KB
testcase_06 AC 135 ms
41,508 KB
testcase_07 AC 127 ms
41,148 KB
testcase_08 AC 114 ms
39,824 KB
testcase_09 AC 116 ms
40,240 KB
testcase_10 AC 113 ms
39,968 KB
testcase_11 AC 477 ms
40,324 KB
testcase_12 AC 122 ms
39,972 KB
testcase_13 AC 474 ms
40,940 KB
testcase_14 AC 121 ms
40,012 KB
testcase_15 AC 130 ms
40,188 KB
testcase_16 AC 112 ms
40,276 KB
testcase_17 AC 457 ms
41,232 KB
testcase_18 AC 122 ms
40,996 KB
testcase_19 AC 175 ms
41,088 KB
testcase_20 AC 137 ms
41,568 KB
testcase_21 AC 146 ms
41,372 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