結果

問題 No.552 十分簡単な星1の問題
ユーザー FVRChanFVRChan
提出日時 2017-09-29 12:07:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 76,288 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-11-15 19:50:01
合計ジャッジ時間 10,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 147 ms
41,380 KB
testcase_02 AC 143 ms
41,436 KB
testcase_03 AC 144 ms
41,380 KB
testcase_04 AC 131 ms
40,324 KB
testcase_05 AC 142 ms
41,644 KB
testcase_06 AC 144 ms
41,348 KB
testcase_07 AC 146 ms
41,304 KB
testcase_08 AC 142 ms
41,692 KB
testcase_09 AC 145 ms
41,636 KB
testcase_10 AC 143 ms
41,416 KB
testcase_11 AC 144 ms
41,472 KB
testcase_12 AC 142 ms
41,408 KB
testcase_13 AC 132 ms
40,428 KB
testcase_14 AC 143 ms
41,452 KB
testcase_15 AC 143 ms
42,096 KB
testcase_16 AC 146 ms
41,648 KB
testcase_17 AC 144 ms
41,664 KB
testcase_18 AC 145 ms
41,376 KB
testcase_19 AC 143 ms
41,700 KB
testcase_20 AC 131 ms
40,432 KB
testcase_21 AC 137 ms
41,236 KB
testcase_22 AC 141 ms
41,728 KB
testcase_23 AC 144 ms
41,768 KB
testcase_24 AC 146 ms
41,400 KB
testcase_25 AC 146 ms
41,944 KB
testcase_26 AC 146 ms
41,368 KB
testcase_27 AC 141 ms
41,580 KB
testcase_28 AC 133 ms
41,032 KB
testcase_29 RE -
testcase_30 AC 143 ms
41,644 KB
testcase_31 AC 146 ms
41,608 KB
testcase_32 AC 142 ms
41,576 KB
testcase_33 AC 151 ms
41,712 KB
testcase_34 AC 144 ms
41,568 KB
testcase_35 AC 142 ms
41,680 KB
testcase_36 AC 144 ms
41,700 KB
testcase_37 AC 144 ms
41,416 KB
testcase_38 AC 142 ms
41,456 KB
testcase_39 AC 142 ms
41,396 KB
testcase_40 AC 142 ms
41,528 KB
testcase_41 AC 142 ms
41,388 KB
testcase_42 AC 142 ms
41,632 KB
testcase_43 AC 142 ms
41,612 KB
testcase_44 AC 141 ms
41,584 KB
testcase_45 AC 128 ms
40,548 KB
testcase_46 AC 129 ms
40,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		long n=Long.parseLong(sc.nextLine());
		System.out.println(n+"0");
	}
}
0