結果

問題 No.552 十分簡単な星1の問題
ユーザー YamaKasaYamaKasa
提出日時 2018-05-06 22:32:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 207 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 72,264 KB
実行使用メモリ 57,636 KB
最終ジャッジ日時 2023-09-10 10:50:10
合計ジャッジ時間 9,822 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 123 ms
55,780 KB
testcase_02 AC 123 ms
55,632 KB
testcase_03 AC 124 ms
55,832 KB
testcase_04 AC 123 ms
55,316 KB
testcase_05 AC 124 ms
55,528 KB
testcase_06 AC 122 ms
55,712 KB
testcase_07 AC 121 ms
55,868 KB
testcase_08 AC 122 ms
56,348 KB
testcase_09 AC 122 ms
55,900 KB
testcase_10 AC 121 ms
55,556 KB
testcase_11 AC 121 ms
55,940 KB
testcase_12 AC 120 ms
55,704 KB
testcase_13 AC 120 ms
54,356 KB
testcase_14 AC 121 ms
55,840 KB
testcase_15 AC 121 ms
55,508 KB
testcase_16 AC 123 ms
56,040 KB
testcase_17 AC 123 ms
56,000 KB
testcase_18 AC 122 ms
53,612 KB
testcase_19 AC 122 ms
55,888 KB
testcase_20 AC 122 ms
55,852 KB
testcase_21 AC 123 ms
55,352 KB
testcase_22 AC 120 ms
55,860 KB
testcase_23 AC 122 ms
55,612 KB
testcase_24 AC 121 ms
55,740 KB
testcase_25 AC 121 ms
56,092 KB
testcase_26 AC 121 ms
55,732 KB
testcase_27 AC 120 ms
56,264 KB
testcase_28 AC 121 ms
55,856 KB
testcase_29 AC 121 ms
56,212 KB
testcase_30 AC 120 ms
55,720 KB
testcase_31 AC 121 ms
56,116 KB
testcase_32 AC 122 ms
55,976 KB
testcase_33 AC 121 ms
55,876 KB
testcase_34 AC 121 ms
56,152 KB
testcase_35 AC 121 ms
54,084 KB
testcase_36 AC 122 ms
55,712 KB
testcase_37 AC 123 ms
56,040 KB
testcase_38 AC 130 ms
55,696 KB
testcase_39 AC 125 ms
57,636 KB
testcase_40 AC 124 ms
55,360 KB
testcase_41 AC 126 ms
55,436 KB
testcase_42 AC 124 ms
56,032 KB
testcase_43 AC 124 ms
56,120 KB
testcase_44 AC 126 ms
55,980 KB
testcase_45 AC 125 ms
55,852 KB
testcase_46 AC 123 ms
55,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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