結果

問題 No.1616 Joke
ユーザー merlinmerlin
提出日時 2021-07-22 21:51:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 5,450 ms
コンパイル使用メモリ 71,340 KB
実行使用メモリ 49,704 KB
最終ジャッジ日時 2023-09-24 16:32:57
合計ジャッジ時間 4,064 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,224 KB
testcase_01 AC 46 ms
48,980 KB
testcase_02 AC 45 ms
48,980 KB
testcase_03 AC 46 ms
49,408 KB
testcase_04 AC 45 ms
47,132 KB
testcase_05 AC 45 ms
49,296 KB
testcase_06 AC 46 ms
49,608 KB
testcase_07 AC 45 ms
49,252 KB
testcase_08 AC 44 ms
49,256 KB
testcase_09 AC 45 ms
49,592 KB
testcase_10 AC 44 ms
49,704 KB
testcase_11 AC 43 ms
49,092 KB
testcase_12 AC 43 ms
49,248 KB
testcase_13 AC 43 ms
49,092 KB
testcase_14 AC 44 ms
49,388 KB
testcase_15 AC 43 ms
49,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        System.out.println(n);
    }
}
0