結果

問題 No.1399 すごろくで世界旅行 (構築)
ユーザー ああいいああいい
提出日時 2022-01-08 20:40:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 3,153 ms
コード長 275 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 79,836 KB
最終ジャッジ日時 2024-04-26 19:29:54
合計ジャッジ時間 21,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 35 ms
51,908 KB
testcase_02 AC 36 ms
52,376 KB
testcase_03 AC 35 ms
52,892 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 36 ms
52,880 KB
testcase_06 AC 36 ms
53,148 KB
testcase_07 AC 35 ms
53,100 KB
testcase_08 AC 37 ms
53,616 KB
testcase_09 AC 37 ms
52,732 KB
testcase_10 AC 37 ms
53,368 KB
testcase_11 AC 36 ms
51,940 KB
testcase_12 AC 37 ms
51,876 KB
testcase_13 AC 39 ms
52,888 KB
testcase_14 AC 37 ms
52,864 KB
testcase_15 AC 36 ms
52,464 KB
testcase_16 AC 37 ms
53,468 KB
testcase_17 AC 111 ms
79,820 KB
testcase_18 AC 119 ms
79,732 KB
testcase_19 AC 118 ms
79,592 KB
testcase_20 AC 114 ms
79,740 KB
testcase_21 AC 106 ms
79,836 KB
testcase_22 AC 43 ms
61,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

V,D = map(int,input().split())

if D == 1:
    for h in range(V):
        print('1' * V)
else:
    for h in range(V):
        for w in range(V):
            if h == 0 or w == 0:
                print(1,end="")
            else:
                print(0,end="")
        print()
0