結果

問題 No.1264 010
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-11 09:31:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 3,405 ms
コンパイル使用メモリ 74,944 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-10-12 23:37:39
合計ジャッジ時間 6,185 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
44,456 KB
testcase_01 AC 116 ms
39,832 KB
testcase_02 AC 124 ms
41,392 KB
testcase_03 AC 132 ms
41,188 KB
testcase_04 AC 134 ms
41,492 KB
testcase_05 AC 151 ms
41,628 KB
testcase_06 AC 122 ms
41,224 KB
testcase_07 AC 121 ms
40,096 KB
testcase_08 AC 122 ms
41,180 KB
testcase_09 AC 168 ms
42,020 KB
testcase_10 AC 159 ms
41,648 KB
testcase_11 AC 155 ms
41,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	int n = sc.nextInt();
	    	sc.close();
	    	
	    	if (n ==0) {System.out.print("1");
	    	}else {
	    	
	    	System.out.print("01");
	    	for (int i = 0; i < n; i++) {
	    		System.out.print("0");
	    	}}

	    	}

	    }
0