結果

問題 No.63 ポッキーゲーム
ユーザー ダンネックダンネック
提出日時 2020-05-24 10:57:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 511 ms / 5,000 ms
コード長 331 bytes
コンパイル時間 3,335 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-10-11 01:50:54
合計ジャッジ時間 8,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,080 KB
testcase_01 AC 131 ms
41,232 KB
testcase_02 AC 134 ms
41,272 KB
testcase_03 AC 132 ms
40,932 KB
testcase_04 AC 129 ms
41,216 KB
testcase_05 AC 133 ms
41,148 KB
testcase_06 AC 133 ms
41,200 KB
testcase_07 AC 131 ms
41,300 KB
testcase_08 AC 130 ms
40,992 KB
testcase_09 AC 135 ms
41,116 KB
testcase_10 AC 138 ms
41,120 KB
testcase_11 AC 510 ms
41,104 KB
testcase_12 AC 140 ms
41,112 KB
testcase_13 AC 511 ms
40,972 KB
testcase_14 AC 143 ms
41,120 KB
testcase_15 AC 141 ms
41,120 KB
testcase_16 AC 138 ms
41,336 KB
testcase_17 AC 484 ms
40,980 KB
testcase_18 AC 134 ms
41,000 KB
testcase_19 AC 187 ms
41,108 KB
testcase_20 AC 142 ms
41,008 KB
testcase_21 AC 140 ms
40,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class length{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
	    int a = sc.nextInt();
	    int b = sc.nextInt();
	    int c = 0;
        while(a > b*2){
			a -= b*2;
			c+=1;
		}
		System.out.println(b * c);
		sc.close();
    }
}
0