結果

問題 No.552 十分簡単な星1の問題
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-11 21:41:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 189 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 71,912 KB
実行使用メモリ 56,464 KB
最終ジャッジ日時 2023-08-10 23:13:35
合計ジャッジ時間 9,740 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 121 ms
55,896 KB
testcase_02 AC 124 ms
55,960 KB
testcase_03 AC 122 ms
55,668 KB
testcase_04 AC 125 ms
55,596 KB
testcase_05 AC 110 ms
56,464 KB
testcase_06 AC 118 ms
55,900 KB
testcase_07 AC 119 ms
56,056 KB
testcase_08 AC 113 ms
56,352 KB
testcase_09 AC 112 ms
56,164 KB
testcase_10 AC 117 ms
55,704 KB
testcase_11 AC 115 ms
55,844 KB
testcase_12 AC 112 ms
55,740 KB
testcase_13 AC 119 ms
53,520 KB
testcase_14 AC 114 ms
55,680 KB
testcase_15 AC 118 ms
55,768 KB
testcase_16 AC 118 ms
55,492 KB
testcase_17 AC 115 ms
55,504 KB
testcase_18 AC 123 ms
55,312 KB
testcase_19 AC 122 ms
55,508 KB
testcase_20 AC 116 ms
55,960 KB
testcase_21 AC 120 ms
55,844 KB
testcase_22 AC 122 ms
56,080 KB
testcase_23 AC 117 ms
55,640 KB
testcase_24 AC 114 ms
56,156 KB
testcase_25 AC 113 ms
56,232 KB
testcase_26 AC 114 ms
55,724 KB
testcase_27 AC 119 ms
56,168 KB
testcase_28 AC 119 ms
56,208 KB
testcase_29 AC 124 ms
56,204 KB
testcase_30 AC 123 ms
55,584 KB
testcase_31 AC 121 ms
55,848 KB
testcase_32 AC 124 ms
55,612 KB
testcase_33 AC 120 ms
56,100 KB
testcase_34 AC 119 ms
55,836 KB
testcase_35 AC 115 ms
53,744 KB
testcase_36 AC 116 ms
56,144 KB
testcase_37 AC 116 ms
55,704 KB
testcase_38 AC 117 ms
55,996 KB
testcase_39 AC 119 ms
56,092 KB
testcase_40 AC 121 ms
55,764 KB
testcase_41 AC 123 ms
55,540 KB
testcase_42 AC 123 ms
55,960 KB
testcase_43 AC 116 ms
54,116 KB
testcase_44 AC 118 ms
55,836 KB
testcase_45 AC 117 ms
56,132 KB
testcase_46 AC 114 ms
56,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

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