結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,152 KB
testcase_01 AC 145 ms
41,368 KB
testcase_02 AC 145 ms
41,952 KB
testcase_03 AC 147 ms
41,376 KB
testcase_04 AC 145 ms
41,408 KB
testcase_05 AC 145 ms
41,288 KB
testcase_06 AC 152 ms
41,668 KB
testcase_07 AC 143 ms
41,424 KB
testcase_08 AC 146 ms
41,756 KB
testcase_09 AC 149 ms
41,380 KB
testcase_10 AC 145 ms
41,312 KB
testcase_11 AC 146 ms
41,664 KB
testcase_12 AC 148 ms
41,840 KB
testcase_13 AC 146 ms
41,524 KB
testcase_14 AC 146 ms
41,380 KB
testcase_15 AC 149 ms
41,580 KB
testcase_16 AC 149 ms
41,652 KB
testcase_17 AC 151 ms
41,496 KB
testcase_18 AC 146 ms
41,252 KB
testcase_19 AC 144 ms
41,280 KB
testcase_20 AC 143 ms
41,704 KB
testcase_21 AC 146 ms
41,248 KB
testcase_22 AC 130 ms
40,256 KB
testcase_23 AC 146 ms
41,460 KB
testcase_24 AC 147 ms
41,776 KB
testcase_25 AC 144 ms
41,416 KB
testcase_26 AC 143 ms
41,472 KB
testcase_27 AC 146 ms
41,352 KB
testcase_28 AC 145 ms
41,376 KB
testcase_29 RE -
testcase_30 AC 135 ms
40,112 KB
testcase_31 AC 145 ms
41,280 KB
testcase_32 AC 146 ms
41,304 KB
testcase_33 AC 148 ms
41,280 KB
testcase_34 AC 145 ms
41,720 KB
testcase_35 AC 142 ms
41,360 KB
testcase_36 AC 146 ms
41,520 KB
testcase_37 AC 131 ms
40,112 KB
testcase_38 AC 144 ms
41,276 KB
testcase_39 AC 147 ms
41,596 KB
testcase_40 AC 146 ms
41,640 KB
testcase_41 AC 146 ms
41,560 KB
testcase_42 AC 144 ms
41,544 KB
testcase_43 AC 146 ms
41,348 KB
testcase_44 AC 149 ms
41,468 KB
testcase_45 AC 145 ms
41,728 KB
testcase_46 AC 147 ms
41,620 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());
		if(n==0)System.out.println(n);
		else System.out.println(n+"0");
	}
}
0