結果

問題 No.552 十分簡単な星1の問題
ユーザー fal_rndfal_rnd
提出日時 2017-08-11 22:20:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 2,570 ms
コンパイル使用メモリ 87,644 KB
実行使用メモリ 56,632 KB
最終ジャッジ日時 2023-08-02 22:38:30
合計ジャッジ時間 8,838 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,396 KB
testcase_01 AC 108 ms
55,872 KB
testcase_02 AC 110 ms
55,460 KB
testcase_03 AC 106 ms
55,832 KB
testcase_04 AC 105 ms
55,564 KB
testcase_05 AC 110 ms
55,468 KB
testcase_06 AC 112 ms
55,856 KB
testcase_07 AC 109 ms
55,552 KB
testcase_08 AC 113 ms
56,632 KB
testcase_09 AC 109 ms
53,616 KB
testcase_10 AC 110 ms
54,448 KB
testcase_11 AC 107 ms
54,024 KB
testcase_12 AC 112 ms
55,764 KB
testcase_13 AC 114 ms
55,900 KB
testcase_14 AC 110 ms
55,544 KB
testcase_15 AC 111 ms
56,464 KB
testcase_16 AC 109 ms
55,724 KB
testcase_17 AC 113 ms
55,980 KB
testcase_18 AC 112 ms
55,936 KB
testcase_19 AC 110 ms
55,988 KB
testcase_20 AC 110 ms
55,972 KB
testcase_21 AC 111 ms
53,884 KB
testcase_22 AC 110 ms
55,576 KB
testcase_23 AC 116 ms
55,864 KB
testcase_24 AC 113 ms
55,588 KB
testcase_25 AC 111 ms
55,972 KB
testcase_26 AC 110 ms
55,740 KB
testcase_27 AC 109 ms
55,200 KB
testcase_28 AC 109 ms
55,928 KB
testcase_29 AC 105 ms
55,424 KB
testcase_30 AC 109 ms
55,896 KB
testcase_31 AC 108 ms
55,816 KB
testcase_32 AC 113 ms
55,544 KB
testcase_33 AC 109 ms
55,308 KB
testcase_34 AC 112 ms
55,516 KB
testcase_35 AC 106 ms
55,196 KB
testcase_36 AC 108 ms
55,452 KB
testcase_37 AC 108 ms
55,796 KB
testcase_38 AC 107 ms
55,588 KB
testcase_39 AC 103 ms
55,660 KB
testcase_40 AC 107 ms
55,500 KB
testcase_41 AC 107 ms
54,212 KB
testcase_42 AC 105 ms
55,888 KB
testcase_43 AC 108 ms
55,512 KB
testcase_44 AC 108 ms
55,464 KB
testcase_45 AC 106 ms
55,508 KB
testcase_46 AC 107 ms
55,540 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