結果

問題 No.552 十分簡単な星1の問題
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-05 02:35:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 4,124 ms
コンパイル使用メモリ 72,764 KB
実行使用メモリ 51,004 KB
最終ジャッジ日時 2023-08-10 12:54:29
合計ジャッジ時間 9,410 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 67 ms
50,552 KB
testcase_02 AC 65 ms
50,904 KB
testcase_03 AC 65 ms
50,372 KB
testcase_04 AC 62 ms
50,516 KB
testcase_05 AC 63 ms
50,388 KB
testcase_06 AC 61 ms
50,680 KB
testcase_07 AC 63 ms
50,640 KB
testcase_08 AC 64 ms
50,332 KB
testcase_09 AC 64 ms
50,648 KB
testcase_10 AC 63 ms
50,436 KB
testcase_11 AC 66 ms
50,520 KB
testcase_12 AC 63 ms
50,656 KB
testcase_13 AC 62 ms
50,680 KB
testcase_14 AC 62 ms
50,556 KB
testcase_15 AC 61 ms
50,764 KB
testcase_16 AC 63 ms
50,652 KB
testcase_17 AC 64 ms
50,520 KB
testcase_18 AC 62 ms
51,004 KB
testcase_19 AC 63 ms
50,688 KB
testcase_20 AC 64 ms
50,684 KB
testcase_21 AC 61 ms
50,496 KB
testcase_22 AC 62 ms
49,016 KB
testcase_23 AC 64 ms
50,568 KB
testcase_24 AC 62 ms
50,712 KB
testcase_25 AC 63 ms
50,396 KB
testcase_26 AC 63 ms
50,692 KB
testcase_27 AC 63 ms
50,456 KB
testcase_28 AC 65 ms
50,516 KB
testcase_29 WA -
testcase_30 AC 60 ms
50,512 KB
testcase_31 AC 61 ms
50,440 KB
testcase_32 AC 61 ms
50,900 KB
testcase_33 AC 62 ms
50,456 KB
testcase_34 AC 63 ms
50,888 KB
testcase_35 AC 63 ms
50,396 KB
testcase_36 AC 63 ms
50,540 KB
testcase_37 AC 61 ms
50,640 KB
testcase_38 AC 63 ms
50,724 KB
testcase_39 AC 64 ms
50,416 KB
testcase_40 AC 63 ms
50,560 KB
testcase_41 AC 65 ms
50,488 KB
testcase_42 AC 64 ms
50,336 KB
testcase_43 AC 63 ms
50,488 KB
testcase_44 AC 64 ms
50,648 KB
testcase_45 AC 65 ms
50,616 KB
testcase_46 AC 66 ms
50,672 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