結果

問題 No.1033 乱数サイ
ユーザー yomo3yomo3
提出日時 2020-05-05 05:13:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-06-25 19:24:22
合計ジャッジ時間 5,748 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,788 KB
testcase_01 AC 125 ms
41,740 KB
testcase_02 AC 124 ms
41,748 KB
testcase_03 AC 122 ms
41,324 KB
testcase_04 AC 125 ms
41,292 KB
testcase_05 AC 105 ms
39,876 KB
testcase_06 AC 107 ms
40,488 KB
testcase_07 AC 109 ms
40,380 KB
testcase_08 AC 111 ms
40,176 KB
testcase_09 AC 110 ms
40,276 KB
testcase_10 AC 125 ms
41,440 KB
testcase_11 AC 125 ms
41,672 KB
testcase_12 AC 123 ms
41,540 KB
testcase_13 AC 122 ms
41,592 KB
testcase_14 AC 121 ms
41,304 KB
testcase_15 AC 128 ms
41,520 KB
testcase_16 AC 120 ms
41,032 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 K = sc.nextInt();
        System.out.println((double)N / 2);
     }
}
0