結果

問題 No.1616 Joke
ユーザー takutakutakutaku
提出日時 2021-08-24 08:59:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 73,216 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-04-26 12:50:03
合計ジャッジ時間 5,152 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,100 KB
testcase_01 AC 103 ms
39,868 KB
testcase_02 AC 110 ms
41,160 KB
testcase_03 AC 112 ms
41,180 KB
testcase_04 AC 107 ms
39,944 KB
testcase_05 AC 113 ms
40,824 KB
testcase_06 AC 112 ms
40,844 KB
testcase_07 AC 96 ms
39,808 KB
testcase_08 AC 112 ms
40,700 KB
testcase_09 AC 121 ms
41,176 KB
testcase_10 AC 116 ms
41,192 KB
testcase_11 AC 101 ms
39,760 KB
testcase_12 AC 118 ms
41,044 KB
testcase_13 AC 114 ms
40,288 KB
testcase_14 AC 120 ms
41,412 KB
testcase_15 AC 115 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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