結果

問題 No.1033 乱数サイ
ユーザー yomo3yomo3
提出日時 2020-05-05 05:13:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 3,558 ms
コンパイル使用メモリ 71,224 KB
実行使用メモリ 57,912 KB
最終ジャッジ日時 2023-09-08 02:17:38
合計ジャッジ時間 6,732 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
55,380 KB
testcase_01 AC 119 ms
57,912 KB
testcase_02 AC 124 ms
55,816 KB
testcase_03 AC 125 ms
55,812 KB
testcase_04 AC 121 ms
55,672 KB
testcase_05 AC 121 ms
55,720 KB
testcase_06 AC 121 ms
55,704 KB
testcase_07 AC 124 ms
55,512 KB
testcase_08 AC 122 ms
56,120 KB
testcase_09 AC 123 ms
55,836 KB
testcase_10 AC 131 ms
55,708 KB
testcase_11 AC 122 ms
55,636 KB
testcase_12 AC 124 ms
57,568 KB
testcase_13 AC 121 ms
55,580 KB
testcase_14 AC 119 ms
55,948 KB
testcase_15 AC 122 ms
55,680 KB
testcase_16 AC 118 ms
57,680 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