結果

問題 No.63 ポッキーゲーム
ユーザー fal_rndfal_rnd
提出日時 2017-04-03 18:56:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 1,678 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-06-06 13:34:08
合計ジャッジ時間 4,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,328 KB
testcase_01 AC 107 ms
40,920 KB
testcase_02 AC 98 ms
39,876 KB
testcase_03 AC 100 ms
40,068 KB
testcase_04 AC 108 ms
41,244 KB
testcase_05 AC 109 ms
39,904 KB
testcase_06 AC 98 ms
39,908 KB
testcase_07 AC 108 ms
41,012 KB
testcase_08 AC 112 ms
41,128 KB
testcase_09 AC 98 ms
39,780 KB
testcase_10 AC 94 ms
39,420 KB
testcase_11 AC 94 ms
39,804 KB
testcase_12 AC 107 ms
41,196 KB
testcase_13 AC 99 ms
40,184 KB
testcase_14 AC 108 ms
39,828 KB
testcase_15 AC 106 ms
39,896 KB
testcase_16 AC 100 ms
39,928 KB
testcase_17 AC 108 ms
41,296 KB
testcase_18 AC 94 ms
39,632 KB
testcase_19 AC 98 ms
39,932 KB
testcase_20 AC 107 ms
40,988 KB
testcase_21 AC 106 ms
40,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	static final Scanner s=new Scanner(System.in);

	public static void main(String args[]){
		int n=s.nextInt(),k=s.nextInt();
		System.out.println((n-1)/(k*2)*k);
	}
}
0