結果

問題 No.63 ポッキーゲーム
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:41:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 260 bytes
コンパイル時間 3,310 ms
コンパイル使用メモリ 73,964 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-06-06 13:25:24
合計ジャッジ時間 6,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,588 KB
testcase_01 AC 114 ms
53,756 KB
testcase_02 AC 117 ms
53,888 KB
testcase_03 AC 113 ms
53,904 KB
testcase_04 AC 114 ms
53,888 KB
testcase_05 AC 114 ms
54,124 KB
testcase_06 AC 117 ms
54,156 KB
testcase_07 AC 120 ms
54,084 KB
testcase_08 AC 106 ms
52,880 KB
testcase_09 AC 123 ms
53,748 KB
testcase_10 AC 112 ms
53,788 KB
testcase_11 AC 113 ms
53,892 KB
testcase_12 AC 104 ms
53,024 KB
testcase_13 AC 103 ms
52,692 KB
testcase_14 AC 115 ms
52,760 KB
testcase_15 AC 117 ms
54,092 KB
testcase_16 AC 125 ms
53,900 KB
testcase_17 AC 122 ms
54,212 KB
testcase_18 AC 126 ms
53,836 KB
testcase_19 AC 122 ms
53,824 KB
testcase_20 AC 120 ms
53,804 KB
testcase_21 AC 123 ms
53,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt(), k = sc.nextInt(), tmp;
		tmp = n/(k*2);
		if(n%(k*2) == 0){
			tmp--;
		}
		System.out.println(k*tmp);
	}
}
0