結果

問題 No.1399 すごろくで世界旅行 (構築)
ユーザー 👑 KazunKazun
提出日時 2021-02-19 22:51:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 3,153 ms
コード長 201 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 83,464 KB
最終ジャッジ日時 2024-09-16 21:30:44
合計ジャッジ時間 19,501 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,616 KB
testcase_01 AC 32 ms
53,312 KB
testcase_02 AC 31 ms
52,036 KB
testcase_03 AC 32 ms
52,216 KB
testcase_04 AC 33 ms
52,284 KB
testcase_05 AC 31 ms
52,880 KB
testcase_06 AC 31 ms
52,084 KB
testcase_07 AC 32 ms
52,960 KB
testcase_08 AC 34 ms
51,628 KB
testcase_09 AC 32 ms
52,068 KB
testcase_10 AC 31 ms
52,620 KB
testcase_11 AC 32 ms
52,416 KB
testcase_12 AC 33 ms
51,960 KB
testcase_13 AC 31 ms
53,360 KB
testcase_14 AC 32 ms
52,484 KB
testcase_15 AC 33 ms
53,088 KB
testcase_16 AC 33 ms
51,944 KB
testcase_17 AC 70 ms
83,416 KB
testcase_18 AC 69 ms
83,464 KB
testcase_19 AC 66 ms
83,092 KB
testcase_20 AC 71 ms
83,228 KB
testcase_21 AC 70 ms
83,420 KB
testcase_22 AC 72 ms
83,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

V,D=map(int,input().split())
if D==1:
    X=[[1]*V for _ in range(V)]
else:
    X=[[0]*V for _ in range(V)]

    for i in range(V):
        X[0][i]=X[i][0]=1

for x in X:
    print("".join(map(str,x)))
0