結果

問題 No.552 十分簡単な星1の問題
ユーザー マサマサ
提出日時 2022-02-08 22:23:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 192 bytes
コンパイル時間 2,530 ms
コンパイル使用メモリ 71,836 KB
実行使用メモリ 56,752 KB
最終ジャッジ日時 2023-09-05 22:53:15
合計ジャッジ時間 10,554 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 130 ms
56,024 KB
testcase_02 AC 128 ms
56,192 KB
testcase_03 AC 123 ms
55,928 KB
testcase_04 AC 127 ms
55,912 KB
testcase_05 AC 121 ms
56,100 KB
testcase_06 AC 130 ms
55,936 KB
testcase_07 AC 123 ms
55,796 KB
testcase_08 AC 130 ms
56,068 KB
testcase_09 AC 125 ms
55,960 KB
testcase_10 AC 129 ms
55,804 KB
testcase_11 AC 131 ms
55,872 KB
testcase_12 AC 131 ms
55,968 KB
testcase_13 AC 129 ms
54,268 KB
testcase_14 AC 130 ms
56,140 KB
testcase_15 AC 129 ms
55,744 KB
testcase_16 AC 131 ms
55,996 KB
testcase_17 AC 129 ms
56,368 KB
testcase_18 AC 137 ms
56,032 KB
testcase_19 AC 136 ms
55,644 KB
testcase_20 AC 135 ms
55,832 KB
testcase_21 AC 133 ms
55,868 KB
testcase_22 AC 133 ms
56,268 KB
testcase_23 AC 129 ms
55,904 KB
testcase_24 AC 134 ms
56,228 KB
testcase_25 AC 132 ms
56,212 KB
testcase_26 AC 135 ms
56,372 KB
testcase_27 AC 136 ms
56,044 KB
testcase_28 AC 132 ms
56,260 KB
testcase_29 RE -
testcase_30 AC 132 ms
55,792 KB
testcase_31 AC 135 ms
56,080 KB
testcase_32 AC 128 ms
55,924 KB
testcase_33 AC 129 ms
55,728 KB
testcase_34 AC 129 ms
55,952 KB
testcase_35 AC 127 ms
56,068 KB
testcase_36 AC 131 ms
56,716 KB
testcase_37 AC 131 ms
56,752 KB
testcase_38 AC 129 ms
55,652 KB
testcase_39 AC 130 ms
55,976 KB
testcase_40 AC 131 ms
55,964 KB
testcase_41 AC 132 ms
55,916 KB
testcase_42 AC 130 ms
56,420 KB
testcase_43 AC 130 ms
55,756 KB
testcase_44 AC 130 ms
55,796 KB
testcase_45 AC 136 ms
55,876 KB
testcase_46 AC 134 ms
56,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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