結果

問題 No.63 ポッキーゲーム
ユーザー kuramubonnkuramubonn
提出日時 2023-02-01 21:38:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 287 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,252 KB
最終ジャッジ日時 2024-07-01 14:50:58
合計ジャッジ時間 5,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,132 KB
testcase_01 AC 131 ms
40,896 KB
testcase_02 AC 130 ms
41,028 KB
testcase_03 AC 132 ms
41,108 KB
testcase_04 AC 115 ms
39,920 KB
testcase_05 AC 130 ms
41,028 KB
testcase_06 AC 131 ms
40,880 KB
testcase_07 AC 130 ms
40,944 KB
testcase_08 AC 129 ms
40,956 KB
testcase_09 AC 117 ms
40,144 KB
testcase_10 AC 131 ms
41,208 KB
testcase_11 AC 126 ms
41,104 KB
testcase_12 AC 114 ms
40,296 KB
testcase_13 AC 128 ms
40,908 KB
testcase_14 AC 119 ms
40,276 KB
testcase_15 AC 130 ms
40,964 KB
testcase_16 AC 129 ms
41,252 KB
testcase_17 AC 133 ms
41,156 KB
testcase_18 AC 131 ms
40,968 KB
testcase_19 AC 129 ms
40,884 KB
testcase_20 AC 129 ms
40,896 KB
testcase_21 AC 129 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		int l = sc.nextInt() , k = sc.nextInt();
		if(l % (k*2) != 0) {
			System.out.print((l / (k* 2))*k);
		}else {
			System.out.print((l / (k* 2) - 1)*k);
		}
		
	}
}
0