結果

問題 No.63 ポッキーゲーム
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 00:57:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 394 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-06-06 12:59:14
合計ジャッジ時間 5,242 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,420 KB
testcase_01 AC 125 ms
41,432 KB
testcase_02 AC 122 ms
41,248 KB
testcase_03 AC 115 ms
41,272 KB
testcase_04 AC 108 ms
40,896 KB
testcase_05 AC 120 ms
40,992 KB
testcase_06 AC 116 ms
41,380 KB
testcase_07 AC 119 ms
41,460 KB
testcase_08 AC 118 ms
41,268 KB
testcase_09 AC 124 ms
41,220 KB
testcase_10 AC 127 ms
41,180 KB
testcase_11 AC 122 ms
41,380 KB
testcase_12 AC 120 ms
40,832 KB
testcase_13 AC 122 ms
41,448 KB
testcase_14 AC 122 ms
41,124 KB
testcase_15 AC 121 ms
41,536 KB
testcase_16 AC 110 ms
41,268 KB
testcase_17 AC 125 ms
41,092 KB
testcase_18 AC 120 ms
41,200 KB
testcase_19 AC 118 ms
41,440 KB
testcase_20 AC 127 ms
40,852 KB
testcase_21 AC 122 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
       int l = koko.nextInt();
       int k = koko.nextInt();
       int over = l%(2*k);
       if(over!=0){
          System.out.println((l-over)/2); 
       }else if(over==0){
           System.out.println((l-2*k)/2);
       }
       
    }
}
0