結果

問題 No.1264 010
ユーザー 遭難者遭難者
提出日時 2020-10-23 23:21:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 336 bytes
コンパイル時間 2,930 ms
コンパイル使用メモリ 72,616 KB
実行使用メモリ 56,048 KB
最終ジャッジ日時 2023-09-28 18:35:14
合計ジャッジ時間 6,173 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,804 KB
testcase_01 AC 123 ms
55,716 KB
testcase_02 AC 125 ms
55,432 KB
testcase_03 AC 124 ms
55,960 KB
testcase_04 AC 132 ms
56,048 KB
testcase_05 AC 131 ms
53,788 KB
testcase_06 AC 123 ms
55,424 KB
testcase_07 AC 123 ms
56,008 KB
testcase_08 AC 123 ms
55,652 KB
testcase_09 AC 133 ms
55,996 KB
testcase_10 AC 131 ms
55,656 KB
testcase_11 AC 132 ms
55,612 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