結果

問題 No.63 ポッキーゲーム
ユーザー yu_017yu_017
提出日時 2019-01-17 00:45:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 512 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-07-01 06:37:42
合計ジャッジ時間 8,403 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,028 KB
testcase_01 AC 134 ms
53,804 KB
testcase_02 AC 133 ms
53,844 KB
testcase_03 AC 133 ms
53,960 KB
testcase_04 AC 133 ms
54,112 KB
testcase_05 AC 131 ms
53,592 KB
testcase_06 AC 129 ms
53,672 KB
testcase_07 AC 133 ms
54,116 KB
testcase_08 AC 132 ms
54,076 KB
testcase_09 AC 135 ms
53,876 KB
testcase_10 AC 138 ms
53,968 KB
testcase_11 AC 512 ms
53,764 KB
testcase_12 AC 141 ms
53,756 KB
testcase_13 AC 512 ms
54,120 KB
testcase_14 AC 143 ms
54,060 KB
testcase_15 AC 140 ms
54,108 KB
testcase_16 AC 135 ms
53,652 KB
testcase_17 AC 489 ms
54,304 KB
testcase_18 AC 134 ms
53,816 KB
testcase_19 AC 186 ms
54,284 KB
testcase_20 AC 140 ms
53,616 KB
testcase_21 AC 151 ms
54,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A000063 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int l = s.nextInt();
		int k = s.nextInt();
		s.close();
		int a = 1;
		while(l-2*k*a>0) {
			a++;
		}
		System.out.println(k*(a-1));
	}

}
0