結果

問題 No.63 ポッキーゲーム
ユーザー popopopepepe1popopopepepe1
提出日時 2019-09-29 08:30:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 338 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 56,224 KB
最終ジャッジ日時 2024-10-03 04:23:49
合計ジャッジ時間 5,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,732 KB
testcase_01 AC 119 ms
54,000 KB
testcase_02 WA -
testcase_03 AC 120 ms
53,808 KB
testcase_04 AC 131 ms
53,832 KB
testcase_05 AC 124 ms
53,808 KB
testcase_06 AC 122 ms
54,040 KB
testcase_07 AC 112 ms
53,144 KB
testcase_08 AC 125 ms
53,940 KB
testcase_09 AC 114 ms
52,736 KB
testcase_10 AC 110 ms
52,888 KB
testcase_11 AC 126 ms
53,824 KB
testcase_12 AC 121 ms
54,028 KB
testcase_13 WA -
testcase_14 AC 127 ms
53,896 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 122 ms
53,804 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==0){
        System.out.println(0);
    }else{
        int y=(N/x/2)*x;
        System.out.println(y);
    }

  }
}
0