結果

問題 No.830 日本人の9割は90%
ユーザー luv_catluv_cat
提出日時 2020-08-08 15:30:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 50,712 KB
最終ジャッジ日時 2024-04-09 19:16:32
合計ジャッジ時間 2,935 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
50,352 KB
testcase_01 AC 45 ms
50,316 KB
testcase_02 AC 45 ms
50,292 KB
testcase_03 AC 44 ms
50,380 KB
testcase_04 AC 43 ms
49,996 KB
testcase_05 AC 43 ms
50,460 KB
testcase_06 AC 44 ms
50,304 KB
testcase_07 AC 43 ms
50,340 KB
testcase_08 AC 44 ms
50,712 KB
testcase_09 AC 45 ms
50,272 KB
testcase_10 AC 44 ms
50,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    public static void main(String args[]) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
        System.out.println(Integer.parseInt(line) * 10);
    }
}
0