結果

問題 No.1399 すごろくで世界旅行 (構築)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-02-19 21:49:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 257 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 89,324 KB
最終ジャッジ日時 2024-09-16 18:23:36
合計ジャッジ時間 22,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,616 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,776 KB
testcase_03 AC 37 ms
53,136 KB
testcase_04 AC 35 ms
53,332 KB
testcase_05 WA -
testcase_06 AC 37 ms
53,268 KB
testcase_07 AC 35 ms
53,560 KB
testcase_08 AC 37 ms
53,556 KB
testcase_09 WA -
testcase_10 AC 36 ms
51,652 KB
testcase_11 AC 37 ms
52,428 KB
testcase_12 AC 36 ms
52,492 KB
testcase_13 WA -
testcase_14 AC 35 ms
53,048 KB
testcase_15 AC 37 ms
52,200 KB
testcase_16 AC 37 ms
52,968 KB
testcase_17 AC 140 ms
88,996 KB
testcase_18 AC 136 ms
89,252 KB
testcase_19 AC 142 ms
89,004 KB
testcase_20 AC 136 ms
89,132 KB
testcase_21 AC 138 ms
89,072 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

v,d = map(int,input().split())
if d == 1:
    ans = [[1]*v for i in range(v)]
    for i in range(v):
        ans[i][i] = 0
else:
    ans = [[0]*v for i in range(v)]
    for i in range(v):
        ans[i][0] = ans[0][i] = 1

for i in ans:
    print(*i,sep="")
0