結果

問題 No.1399 すごろくで世界旅行 (構築)
ユーザー anagohirameanagohirame
提出日時 2021-02-19 23:27:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 163 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 63,280 KB
最終ジャッジ日時 2024-09-16 23:07:53
合計ジャッジ時間 23,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,996 KB
testcase_01 AC 38 ms
52,524 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
52,760 KB
testcase_06 AC 39 ms
52,992 KB
testcase_07 AC 39 ms
52,276 KB
testcase_08 AC 39 ms
52,276 KB
testcase_09 AC 38 ms
52,708 KB
testcase_10 AC 39 ms
52,580 KB
testcase_11 AC 38 ms
53,620 KB
testcase_12 AC 39 ms
53,224 KB
testcase_13 AC 37 ms
52,088 KB
testcase_14 AC 37 ms
53,312 KB
testcase_15 AC 38 ms
52,140 KB
testcase_16 AC 39 ms
52,336 KB
testcase_17 AC 46 ms
62,504 KB
testcase_18 AC 46 ms
63,280 KB
testcase_19 AC 46 ms
62,392 KB
testcase_20 AC 46 ms
62,996 KB
testcase_21 AC 47 ms
62,164 KB
testcase_22 AC 47 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

v, d = map(int, input().split())
if d == 1:
	print(*["1"*v for _ in range(v)], sep="\n")
else:
	print("1"*v)
	print(*["1"+"0"*(v-1) for _ in range(v-1)], sep="\n")
0