結果

問題 No.63 ポッキーゲーム
ユーザー キョウチクキョウチク
提出日時 2022-06-10 14:56:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 2,483 ms
コンパイル使用メモリ 73,692 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-09-21 05:46:29
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,148 KB
testcase_01 AC 113 ms
41,088 KB
testcase_02 AC 113 ms
40,964 KB
testcase_03 AC 115 ms
41,476 KB
testcase_04 AC 100 ms
40,008 KB
testcase_05 AC 113 ms
41,240 KB
testcase_06 AC 112 ms
41,348 KB
testcase_07 AC 113 ms
40,976 KB
testcase_08 AC 115 ms
41,016 KB
testcase_09 AC 113 ms
40,980 KB
testcase_10 AC 113 ms
41,372 KB
testcase_11 AC 109 ms
40,064 KB
testcase_12 AC 113 ms
41,244 KB
testcase_13 AC 115 ms
41,212 KB
testcase_14 AC 117 ms
40,892 KB
testcase_15 AC 122 ms
41,148 KB
testcase_16 AC 121 ms
41,224 KB
testcase_17 AC 120 ms
40,928 KB
testcase_18 AC 118 ms
41,012 KB
testcase_19 AC 119 ms
41,452 KB
testcase_20 AC 107 ms
40,092 KB
testcase_21 AC 118 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc=new Scanner(System.in);
        String[] line;
        line=sc.nextLine().split(" ");
        int tmp=Integer.parseInt(line[0]);
        int tmp1=Integer.parseInt(line[1]);
        tmp=(tmp-1)/2/tmp1*tmp1;
        System.out.println(tmp);
    }
}
0