結果

問題 No.552 十分簡単な星1の問題
ユーザー aikon_marimoaikon_marimo
提出日時 2018-02-03 22:24:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 181 bytes
コンパイル時間 5,944 ms
コンパイル使用メモリ 76,084 KB
実行使用メモリ 56,292 KB
最終ジャッジ日時 2023-09-02 22:52:32
合計ジャッジ時間 13,268 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 128 ms
55,560 KB
testcase_02 AC 127 ms
55,580 KB
testcase_03 AC 126 ms
56,016 KB
testcase_04 AC 130 ms
55,660 KB
testcase_05 AC 128 ms
55,772 KB
testcase_06 AC 127 ms
55,764 KB
testcase_07 AC 129 ms
56,292 KB
testcase_08 AC 125 ms
54,040 KB
testcase_09 AC 128 ms
55,636 KB
testcase_10 AC 127 ms
55,632 KB
testcase_11 AC 127 ms
55,516 KB
testcase_12 AC 125 ms
55,848 KB
testcase_13 AC 126 ms
55,836 KB
testcase_14 AC 128 ms
55,500 KB
testcase_15 AC 127 ms
55,500 KB
testcase_16 AC 125 ms
55,716 KB
testcase_17 AC 126 ms
55,560 KB
testcase_18 AC 124 ms
55,568 KB
testcase_19 AC 126 ms
55,876 KB
testcase_20 AC 127 ms
55,868 KB
testcase_21 AC 125 ms
55,716 KB
testcase_22 AC 126 ms
55,532 KB
testcase_23 AC 128 ms
55,580 KB
testcase_24 AC 130 ms
55,920 KB
testcase_25 AC 126 ms
55,564 KB
testcase_26 AC 126 ms
55,544 KB
testcase_27 AC 126 ms
55,612 KB
testcase_28 AC 127 ms
55,764 KB
testcase_29 AC 127 ms
55,604 KB
testcase_30 AC 127 ms
55,908 KB
testcase_31 AC 125 ms
55,552 KB
testcase_32 AC 126 ms
55,784 KB
testcase_33 AC 126 ms
55,580 KB
testcase_34 AC 124 ms
55,620 KB
testcase_35 AC 128 ms
55,340 KB
testcase_36 AC 125 ms
55,680 KB
testcase_37 AC 129 ms
55,444 KB
testcase_38 AC 126 ms
55,556 KB
testcase_39 AC 126 ms
55,668 KB
testcase_40 AC 127 ms
55,796 KB
testcase_41 AC 129 ms
55,668 KB
testcase_42 AC 128 ms
55,400 KB
testcase_43 AC 128 ms
55,360 KB
testcase_44 AC 129 ms
55,588 KB
testcase_45 AC 125 ms
55,564 KB
testcase_46 AC 125 ms
55,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		
		String N = in.next();
		
		System.out.println(N + "0");
	}
}
0