結果

問題 No.552 十分簡単な星1の問題
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-05 02:35:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 4,125 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 38,028 KB
最終ジャッジ日時 2024-11-16 18:57:38
合計ジャッジ時間 7,906 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 61 ms
37,596 KB
testcase_02 AC 62 ms
37,568 KB
testcase_03 AC 62 ms
37,524 KB
testcase_04 AC 65 ms
37,740 KB
testcase_05 AC 71 ms
37,664 KB
testcase_06 AC 65 ms
37,920 KB
testcase_07 AC 62 ms
37,576 KB
testcase_08 AC 60 ms
37,716 KB
testcase_09 AC 71 ms
37,476 KB
testcase_10 AC 60 ms
37,460 KB
testcase_11 AC 64 ms
37,436 KB
testcase_12 AC 64 ms
37,964 KB
testcase_13 AC 64 ms
37,752 KB
testcase_14 AC 64 ms
37,864 KB
testcase_15 AC 59 ms
37,560 KB
testcase_16 AC 61 ms
37,760 KB
testcase_17 AC 60 ms
37,464 KB
testcase_18 AC 63 ms
37,596 KB
testcase_19 AC 61 ms
37,752 KB
testcase_20 AC 61 ms
37,536 KB
testcase_21 AC 63 ms
37,884 KB
testcase_22 AC 59 ms
37,832 KB
testcase_23 AC 62 ms
37,508 KB
testcase_24 AC 62 ms
37,628 KB
testcase_25 AC 66 ms
37,644 KB
testcase_26 AC 70 ms
37,240 KB
testcase_27 AC 63 ms
37,640 KB
testcase_28 AC 59 ms
37,448 KB
testcase_29 WA -
testcase_30 AC 61 ms
37,612 KB
testcase_31 AC 65 ms
37,324 KB
testcase_32 AC 63 ms
37,852 KB
testcase_33 AC 64 ms
37,764 KB
testcase_34 AC 61 ms
37,268 KB
testcase_35 AC 60 ms
37,580 KB
testcase_36 AC 62 ms
37,504 KB
testcase_37 AC 58 ms
37,460 KB
testcase_38 AC 72 ms
37,960 KB
testcase_39 AC 63 ms
37,816 KB
testcase_40 AC 60 ms
37,648 KB
testcase_41 AC 61 ms
37,592 KB
testcase_42 AC 57 ms
37,472 KB
testcase_43 AC 61 ms
37,448 KB
testcase_44 AC 63 ms
37,504 KB
testcase_45 AC 62 ms
37,700 KB
testcase_46 AC 61 ms
37,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Test2{
	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			long num = Long.parseLong(br.readLine());
			System.out.println(num + "0");
		}catch(IOException e){
			e.getStackTrace();
		}catch(NumberFormatException e){
			e.getStackTrace();
		}
	}
}
0