結果

問題 No.830 日本人の9割は90%
ユーザー rabirabi
提出日時 2019-06-24 14:25:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 3,902 ms
コンパイル使用メモリ 71,484 KB
実行使用メモリ 49,676 KB
最終ジャッジ日時 2023-09-02 08:12:00
合計ジャッジ時間 4,813 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,216 KB
testcase_01 AC 46 ms
49,108 KB
testcase_02 AC 45 ms
49,676 KB
testcase_03 AC 45 ms
49,260 KB
testcase_04 AC 45 ms
49,284 KB
testcase_05 AC 44 ms
49,220 KB
testcase_06 AC 45 ms
49,284 KB
testcase_07 AC 47 ms
49,112 KB
testcase_08 AC 46 ms
48,972 KB
testcase_09 AC 47 ms
49,260 KB
testcase_10 AC 45 ms
49,104 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