結果

問題 No.63 ポッキーゲーム
ユーザー SuunnSuunn
提出日時 2018-11-20 05:43:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 262 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-06-06 21:06:10
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,000 KB
testcase_01 AC 108 ms
41,212 KB
testcase_02 AC 109 ms
40,396 KB
testcase_03 AC 108 ms
40,872 KB
testcase_04 AC 107 ms
41,172 KB
testcase_05 AC 99 ms
40,876 KB
testcase_06 AC 107 ms
39,724 KB
testcase_07 AC 109 ms
41,000 KB
testcase_08 AC 115 ms
40,656 KB
testcase_09 AC 99 ms
40,540 KB
testcase_10 AC 118 ms
40,816 KB
testcase_11 AC 111 ms
40,664 KB
testcase_12 AC 106 ms
41,028 KB
testcase_13 AC 95 ms
41,428 KB
testcase_14 AC 110 ms
40,908 KB
testcase_15 AC 99 ms
41,012 KB
testcase_16 AC 109 ms
40,872 KB
testcase_17 AC 106 ms
40,648 KB
testcase_18 AC 113 ms
40,692 KB
testcase_19 AC 98 ms
41,152 KB
testcase_20 AC 112 ms
40,868 KB
testcase_21 AC 99 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int K = sc.nextInt();
		int time = (L-1)/(2*K);
		System.out.println(time * K);
	}
}
0