結果

問題 No.552 十分簡単な星1の問題
ユーザー aikon_marimoaikon_marimo
提出日時 2018-02-03 22:24:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 181 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 76,236 KB
実行使用メモリ 55,980 KB
最終ジャッジ日時 2024-06-12 05:03:33
合計ジャッジ時間 9,207 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 123 ms
53,820 KB
testcase_02 AC 123 ms
54,040 KB
testcase_03 AC 126 ms
54,156 KB
testcase_04 AC 126 ms
54,196 KB
testcase_05 AC 125 ms
53,788 KB
testcase_06 AC 107 ms
53,036 KB
testcase_07 AC 122 ms
53,936 KB
testcase_08 AC 122 ms
54,028 KB
testcase_09 AC 123 ms
53,856 KB
testcase_10 AC 118 ms
53,892 KB
testcase_11 AC 120 ms
53,992 KB
testcase_12 AC 111 ms
53,084 KB
testcase_13 AC 128 ms
54,296 KB
testcase_14 AC 120 ms
54,136 KB
testcase_15 AC 119 ms
54,080 KB
testcase_16 AC 117 ms
53,660 KB
testcase_17 AC 125 ms
54,004 KB
testcase_18 AC 119 ms
54,180 KB
testcase_19 AC 122 ms
54,080 KB
testcase_20 AC 130 ms
54,096 KB
testcase_21 AC 121 ms
53,716 KB
testcase_22 AC 123 ms
54,284 KB
testcase_23 AC 121 ms
54,028 KB
testcase_24 AC 124 ms
53,956 KB
testcase_25 AC 124 ms
54,024 KB
testcase_26 AC 124 ms
54,148 KB
testcase_27 AC 120 ms
54,076 KB
testcase_28 AC 123 ms
54,104 KB
testcase_29 AC 121 ms
54,140 KB
testcase_30 AC 116 ms
53,880 KB
testcase_31 AC 123 ms
54,108 KB
testcase_32 AC 123 ms
54,068 KB
testcase_33 AC 124 ms
53,804 KB
testcase_34 AC 121 ms
53,940 KB
testcase_35 AC 120 ms
53,896 KB
testcase_36 AC 120 ms
54,172 KB
testcase_37 AC 123 ms
53,972 KB
testcase_38 AC 120 ms
54,040 KB
testcase_39 AC 108 ms
52,984 KB
testcase_40 AC 121 ms
53,880 KB
testcase_41 AC 126 ms
55,980 KB
testcase_42 AC 117 ms
54,016 KB
testcase_43 AC 121 ms
53,988 KB
testcase_44 AC 122 ms
53,736 KB
testcase_45 AC 119 ms
54,056 KB
testcase_46 AC 121 ms
53,988 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