結果

問題 No.1264 010
ユーザー tentententen
提出日時 2020-10-26 09:01:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 328 bytes
コンパイル時間 2,868 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-07-21 21:14:59
合計ジャッジ時間 5,826 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,060 KB
testcase_01 AC 130 ms
40,948 KB
testcase_02 AC 134 ms
41,592 KB
testcase_03 AC 129 ms
41,436 KB
testcase_04 AC 132 ms
41,512 KB
testcase_05 AC 130 ms
41,764 KB
testcase_06 AC 130 ms
41,716 KB
testcase_07 AC 129 ms
41,760 KB
testcase_08 AC 128 ms
40,992 KB
testcase_09 AC 134 ms
41,436 KB
testcase_10 AC 134 ms
41,328 KB
testcase_11 AC 132 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        StringBuilder sb = new StringBuilder("01");
        for (int i = 0; i < n; i++) {
            sb.append("0");
        }
        System.out.println(sb);
    }
}
0