結果

問題 No.552 十分簡単な星1の問題
ユーザー yamax3232yamax3232
提出日時 2018-03-15 09:44:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 189 bytes
コンパイル時間 2,742 ms
コンパイル使用メモリ 72,376 KB
実行使用メモリ 56,460 KB
最終ジャッジ日時 2023-08-21 23:54:11
合計ジャッジ時間 10,689 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 118 ms
55,672 KB
testcase_02 AC 122 ms
56,016 KB
testcase_03 AC 123 ms
55,756 KB
testcase_04 AC 122 ms
55,516 KB
testcase_05 AC 121 ms
55,564 KB
testcase_06 AC 119 ms
56,460 KB
testcase_07 AC 121 ms
55,524 KB
testcase_08 AC 120 ms
55,840 KB
testcase_09 AC 120 ms
56,192 KB
testcase_10 AC 122 ms
54,456 KB
testcase_11 AC 121 ms
55,836 KB
testcase_12 AC 120 ms
56,260 KB
testcase_13 AC 125 ms
56,160 KB
testcase_14 AC 124 ms
56,040 KB
testcase_15 AC 124 ms
55,816 KB
testcase_16 AC 125 ms
55,964 KB
testcase_17 AC 124 ms
56,088 KB
testcase_18 AC 122 ms
56,104 KB
testcase_19 AC 124 ms
56,336 KB
testcase_20 AC 123 ms
55,956 KB
testcase_21 AC 119 ms
55,888 KB
testcase_22 AC 124 ms
56,060 KB
testcase_23 AC 123 ms
56,164 KB
testcase_24 AC 122 ms
56,368 KB
testcase_25 AC 124 ms
55,840 KB
testcase_26 AC 122 ms
55,992 KB
testcase_27 AC 120 ms
56,000 KB
testcase_28 AC 122 ms
55,952 KB
testcase_29 AC 122 ms
56,168 KB
testcase_30 AC 119 ms
56,296 KB
testcase_31 AC 121 ms
56,092 KB
testcase_32 AC 122 ms
56,108 KB
testcase_33 AC 119 ms
55,980 KB
testcase_34 AC 124 ms
56,120 KB
testcase_35 AC 119 ms
55,932 KB
testcase_36 AC 122 ms
56,120 KB
testcase_37 AC 123 ms
56,120 KB
testcase_38 AC 119 ms
55,812 KB
testcase_39 AC 120 ms
55,888 KB
testcase_40 AC 122 ms
55,952 KB
testcase_41 AC 124 ms
55,788 KB
testcase_42 AC 119 ms
55,896 KB
testcase_43 AC 123 ms
56,376 KB
testcase_44 AC 120 ms
55,896 KB
testcase_45 AC 120 ms
56,200 KB
testcase_46 AC 122 ms
55,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		Scanner kb=new Scanner(System.in);
		String n=kb.nextLine();
		System.out.println(n+"0");


	}

}
0