結果

問題 No.830 日本人の9割は90%
ユーザー rabirabi
提出日時 2019-06-24 14:25:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 2,942 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 50,252 KB
最終ジャッジ日時 2024-06-11 15:08:14
合計ジャッジ時間 4,134 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,148 KB
testcase_01 AC 51 ms
50,180 KB
testcase_02 AC 49 ms
49,980 KB
testcase_03 AC 47 ms
50,048 KB
testcase_04 AC 46 ms
49,972 KB
testcase_05 AC 47 ms
50,240 KB
testcase_06 AC 47 ms
49,752 KB
testcase_07 AC 47 ms
50,252 KB
testcase_08 AC 46 ms
50,152 KB
testcase_09 AC 47 ms
50,128 KB
testcase_10 AC 46 ms
50,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Tester2 {
	public static void main(String[] args){
		try(BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){
			int i = Integer.parseInt(br.readLine());
			System.out.println(i*10);
		}catch(IOException e) {
			e.printStackTrace();
		}
	}
}
0