結果

問題 No.508 超ゆとり教育
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-04 07:48:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 1,807 ms
コンパイル使用メモリ 71,136 KB
実行使用メモリ 49,496 KB
最終ジャッジ日時 2023-10-12 06:06:35
合計ジャッジ時間 2,893 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
49,328 KB
testcase_01 AC 40 ms
49,252 KB
testcase_02 AC 41 ms
49,264 KB
testcase_03 AC 41 ms
49,496 KB
testcase_04 AC 41 ms
49,160 KB
testcase_05 AC 41 ms
49,292 KB
testcase_06 AC 41 ms
49,224 KB
testcase_07 AC 41 ms
49,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        long n = Long.parseLong(reader.readLine());
        System.out.println(10000);
    }
}
0