結果

問題 No.1584 Stones around Circle Pond
ユーザー startcppstartcpp
提出日時 2021-07-02 23:14:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,652 KB
最終ジャッジ日時 2024-06-29 13:02:21
合計ジャッジ時間 30,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 448 ms
45,148 KB
testcase_01 AC 435 ms
44,760 KB
testcase_02 AC 432 ms
45,008 KB
testcase_03 AC 450 ms
44,760 KB
testcase_04 AC 435 ms
44,884 KB
testcase_05 AC 460 ms
45,140 KB
testcase_06 AC 442 ms
45,148 KB
testcase_07 AC 494 ms
45,396 KB
testcase_08 AC 449 ms
45,140 KB
testcase_09 AC 471 ms
44,888 KB
testcase_10 AC 437 ms
45,136 KB
testcase_11 AC 494 ms
45,400 KB
testcase_12 AC 498 ms
45,400 KB
testcase_13 AC 478 ms
45,140 KB
testcase_14 AC 448 ms
44,884 KB
testcase_15 AC 473 ms
45,524 KB
testcase_16 AC 452 ms
45,016 KB
testcase_17 AC 484 ms
45,140 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 432 ms
44,756 KB
testcase_24 AC 504 ms
45,012 KB
testcase_25 AC 447 ms
45,012 KB
testcase_26 AC 439 ms
45,272 KB
testcase_27 AC 458 ms
44,752 KB
testcase_28 AC 452 ms
44,892 KB
testcase_29 AC 441 ms
45,140 KB
testcase_30 AC 446 ms
45,148 KB
testcase_31 AC 480 ms
45,396 KB
testcase_32 AC 488 ms
45,400 KB
testcase_33 AC 478 ms
45,656 KB
testcase_34 AC 478 ms
45,016 KB
testcase_35 AC 477 ms
45,404 KB
testcase_36 AC 474 ms
45,144 KB
testcase_37 AC 464 ms
45,264 KB
testcase_38 AC 484 ms
45,276 KB
testcase_39 AC 476 ms
45,008 KB
testcase_40 AC 446 ms
45,276 KB
testcase_41 AC 491 ms
45,392 KB
testcase_42 AC 567 ms
45,528 KB
testcase_43 AC 442 ms
45,264 KB
testcase_44 AC 480 ms
45,148 KB
testcase_45 AC 443 ms
45,280 KB
testcase_46 AC 438 ms
45,140 KB
testcase_47 AC 446 ms
45,140 KB
testcase_48 AC 454 ms
44,756 KB
testcase_49 AC 442 ms
45,404 KB
testcase_50 AC 442 ms
44,892 KB
testcase_51 AC 439 ms
45,396 KB
testcase_52 AC 429 ms
45,276 KB
testcase_53 AC 473 ms
45,524 KB
testcase_54 AC 437 ms
45,140 KB
testcase_55 AC 433 ms
44,880 KB
testcase_56 AC 437 ms
45,144 KB
testcase_57 AC 459 ms
45,012 KB
testcase_58 AC 462 ms
44,748 KB
testcase_59 AC 448 ms
44,868 KB
testcase_60 AC 458 ms
45,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

n, l = map(int, input().split())
d = list(map(int, input().split()))
D = []

for e in d:
	D.append(e)

for e in d:
	D.append(l + e)

b = list(map(int, input().split()))
A = np.zeros((2 * n, 2 * n), dtype='int64')

for i in range(2 * n):
	for j in range(i):
		if i - j <= n:
			A[i][j] = D[i] - D[j]
		else:
			A[i][j] = 2 * l - (D[i] - D[j])
		A[j][i] = A[i][j]

C = np.zeros((2 * n, 2 * n + 1), dtype='int64')
for i in range(2 * n):
	for j in range(2 * n):
		C[i][j] = A[i][j]
	C[i][2 * n] = b[i]

rankA = np.linalg.matrix_rank(A)
rankAb = np.linalg.matrix_rank(C)

if rankA == rankAb:
	print('Yes')
else:
	print('No')
0