結果

問題 No.552 十分簡単な星1の問題
ユーザー fal_rndfal_rnd
提出日時 2017-08-11 22:20:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 78,872 KB
実行使用メモリ 54,776 KB
最終ジャッジ日時 2024-04-20 22:29:01
合計ジャッジ時間 9,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,960 KB
testcase_01 AC 130 ms
53,828 KB
testcase_02 AC 125 ms
54,056 KB
testcase_03 AC 123 ms
54,292 KB
testcase_04 AC 121 ms
54,116 KB
testcase_05 AC 125 ms
54,776 KB
testcase_06 AC 106 ms
52,940 KB
testcase_07 AC 117 ms
54,324 KB
testcase_08 AC 116 ms
53,996 KB
testcase_09 AC 117 ms
54,396 KB
testcase_10 AC 115 ms
54,104 KB
testcase_11 AC 114 ms
53,944 KB
testcase_12 AC 115 ms
53,920 KB
testcase_13 AC 105 ms
52,676 KB
testcase_14 AC 117 ms
54,308 KB
testcase_15 AC 117 ms
53,820 KB
testcase_16 AC 122 ms
53,720 KB
testcase_17 AC 118 ms
53,852 KB
testcase_18 AC 115 ms
54,068 KB
testcase_19 AC 109 ms
53,368 KB
testcase_20 AC 116 ms
53,816 KB
testcase_21 AC 111 ms
53,844 KB
testcase_22 AC 104 ms
53,992 KB
testcase_23 AC 115 ms
54,092 KB
testcase_24 AC 113 ms
53,984 KB
testcase_25 AC 108 ms
52,808 KB
testcase_26 AC 124 ms
54,216 KB
testcase_27 AC 117 ms
54,028 KB
testcase_28 AC 127 ms
53,728 KB
testcase_29 AC 104 ms
52,304 KB
testcase_30 AC 109 ms
52,816 KB
testcase_31 AC 118 ms
53,880 KB
testcase_32 AC 120 ms
53,644 KB
testcase_33 AC 121 ms
53,748 KB
testcase_34 AC 112 ms
53,400 KB
testcase_35 AC 106 ms
52,804 KB
testcase_36 AC 107 ms
53,968 KB
testcase_37 AC 113 ms
53,896 KB
testcase_38 AC 115 ms
54,324 KB
testcase_39 AC 120 ms
53,912 KB
testcase_40 AC 118 ms
53,936 KB
testcase_41 AC 105 ms
52,872 KB
testcase_42 AC 113 ms
54,108 KB
testcase_43 AC 112 ms
53,756 KB
testcase_44 AC 115 ms
53,928 KB
testcase_45 AC 107 ms
52,952 KB
testcase_46 AC 104 ms
52,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}
	public static void main(String[]$){
		String in=s.next();
		System.out.println(in.equals("0")?0:in+"0");
	}
}
0