結果

問題 No.830 日本人の9割は90%
ユーザー luv_catluv_cat
提出日時 2020-08-08 15:30:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 73,144 KB
実行使用メモリ 37,060 KB
最終ジャッジ日時 2024-10-01 19:25:36
合計ジャッジ時間 3,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,912 KB
testcase_01 AC 53 ms
36,932 KB
testcase_02 AC 51 ms
37,056 KB
testcase_03 AC 53 ms
36,896 KB
testcase_04 AC 53 ms
36,912 KB
testcase_05 AC 53 ms
37,060 KB
testcase_06 AC 54 ms
36,796 KB
testcase_07 AC 52 ms
36,892 KB
testcase_08 AC 54 ms
37,028 KB
testcase_09 AC 53 ms
36,792 KB
testcase_10 AC 53 ms
36,932 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