結果

問題 No.1616 Joke
ユーザー マサマサ
提出日時 2021-12-29 02:19:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 73,428 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-10-03 02:35:46
合計ジャッジ時間 5,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,116 KB
testcase_01 AC 142 ms
41,036 KB
testcase_02 AC 147 ms
41,472 KB
testcase_03 AC 142 ms
41,196 KB
testcase_04 AC 136 ms
41,280 KB
testcase_05 AC 122 ms
41,144 KB
testcase_06 AC 121 ms
41,020 KB
testcase_07 AC 122 ms
41,440 KB
testcase_08 AC 121 ms
41,048 KB
testcase_09 AC 105 ms
39,900 KB
testcase_10 AC 108 ms
40,224 KB
testcase_11 AC 115 ms
41,048 KB
testcase_12 AC 118 ms
41,464 KB
testcase_13 AC 116 ms
41,028 KB
testcase_14 AC 116 ms
40,796 KB
testcase_15 AC 117 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        System.out.println(n);
    }
}
0