結果

問題 No.63 ポッキーゲーム
ユーザー popopopepepe1popopopepepe1
提出日時 2019-09-29 08:35:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 445 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-10-03 04:23:55
合計ジャッジ時間 5,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,040 KB
testcase_01 AC 111 ms
53,040 KB
testcase_02 AC 111 ms
53,208 KB
testcase_03 AC 131 ms
54,104 KB
testcase_04 AC 106 ms
52,876 KB
testcase_05 AC 117 ms
52,724 KB
testcase_06 AC 114 ms
54,096 KB
testcase_07 AC 109 ms
40,052 KB
testcase_08 AC 116 ms
41,872 KB
testcase_09 AC 125 ms
41,568 KB
testcase_10 AC 121 ms
41,172 KB
testcase_11 AC 120 ms
41,212 KB
testcase_12 AC 124 ms
41,308 KB
testcase_13 AC 106 ms
39,924 KB
testcase_14 AC 123 ms
41,172 KB
testcase_15 AC 125 ms
41,256 KB
testcase_16 AC 127 ms
41,568 KB
testcase_17 AC 124 ms
41,364 KB
testcase_18 AC 123 ms
41,276 KB
testcase_19 AC 124 ms
41,368 KB
testcase_20 AC 119 ms
40,664 KB
testcase_21 AC 118 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args ) throws Exception {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    int x = sc.nextInt();
    
    if(N/x/2==1 && N%(x*2)==0){
        System.out.println(0);
    }else if(N%(x*2)==0){
        int j=N/(x*2);
        int y=(j-1)*x;
        System.out.println(y);
    }else{
        int y=(N/x/2)*x;
        System.out.println(y);
    }

  }
}
0