結果

問題 No.1264 010
ユーザー 遭難者遭難者
提出日時 2020-10-23 23:21:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 336 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 75,112 KB
実行使用メモリ 48,516 KB
最終ジャッジ日時 2024-07-21 13:15:48
合計ジャッジ時間 4,848 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
48,344 KB
testcase_01 AC 133 ms
48,516 KB
testcase_02 AC 131 ms
48,060 KB
testcase_03 AC 133 ms
48,072 KB
testcase_04 AC 140 ms
48,068 KB
testcase_05 AC 142 ms
47,976 KB
testcase_06 AC 129 ms
48,112 KB
testcase_07 AC 129 ms
47,916 KB
testcase_08 AC 130 ms
47,580 KB
testcase_09 AC 140 ms
48,108 KB
testcase_10 AC 131 ms
47,812 KB
testcase_11 AC 142 ms
48,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		int n = Integer.parseInt(sc.next());
		ou.print("01");
		for(int i = 0 ; i < n ; i++) ou.print(0);
		ou.println();
		ou.flush();
		sc.close();
	}
}
0