結果

問題 No.63 ポッキーゲーム
ユーザー kou6839kou6839
提出日時 2014-11-19 13:51:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 1,691 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-06-06 12:55:38
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,044 KB
testcase_01 AC 103 ms
41,444 KB
testcase_02 AC 109 ms
41,224 KB
testcase_03 AC 95 ms
41,632 KB
testcase_04 AC 107 ms
41,324 KB
testcase_05 AC 100 ms
41,324 KB
testcase_06 AC 99 ms
41,488 KB
testcase_07 AC 111 ms
41,216 KB
testcase_08 AC 96 ms
41,160 KB
testcase_09 AC 110 ms
41,128 KB
testcase_10 AC 110 ms
41,348 KB
testcase_11 AC 97 ms
41,392 KB
testcase_12 AC 108 ms
41,188 KB
testcase_13 AC 106 ms
40,996 KB
testcase_14 AC 107 ms
41,164 KB
testcase_15 AC 99 ms
41,432 KB
testcase_16 AC 108 ms
41,108 KB
testcase_17 AC 99 ms
41,360 KB
testcase_18 AC 110 ms
41,148 KB
testcase_19 AC 110 ms
41,112 KB
testcase_20 AC 99 ms
41,236 KB
testcase_21 AC 99 ms
40,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();
		System.out.println((int)((Math.ceil(x*1.0/(y*2))-1))*y);
	}
}
0