結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 442 ms
44,748 KB
testcase_01 AC 442 ms
44,996 KB
testcase_02 AC 441 ms
44,736 KB
testcase_03 AC 457 ms
45,140 KB
testcase_04 AC 440 ms
45,124 KB
testcase_05 AC 479 ms
44,740 KB
testcase_06 AC 435 ms
45,128 KB
testcase_07 AC 485 ms
45,252 KB
testcase_08 AC 446 ms
45,260 KB
testcase_09 AC 462 ms
44,740 KB
testcase_10 AC 455 ms
44,992 KB
testcase_11 AC 481 ms
45,120 KB
testcase_12 AC 478 ms
45,632 KB
testcase_13 AC 452 ms
44,996 KB
testcase_14 AC 448 ms
44,744 KB
testcase_15 AC 480 ms
45,136 KB
testcase_16 AC 432 ms
45,136 KB
testcase_17 AC 476 ms
45,384 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 440 ms
45,124 KB
testcase_24 AC 475 ms
45,120 KB
testcase_25 AC 454 ms
45,120 KB
testcase_26 AC 432 ms
45,120 KB
testcase_27 AC 453 ms
44,876 KB
testcase_28 AC 442 ms
45,248 KB
testcase_29 AC 436 ms
45,248 KB
testcase_30 AC 447 ms
44,740 KB
testcase_31 AC 488 ms
45,640 KB
testcase_32 AC 487 ms
45,260 KB
testcase_33 AC 476 ms
45,516 KB
testcase_34 AC 463 ms
45,504 KB
testcase_35 AC 473 ms
45,512 KB
testcase_36 AC 468 ms
45,520 KB
testcase_37 AC 449 ms
44,876 KB
testcase_38 AC 473 ms
45,484 KB
testcase_39 AC 456 ms
45,256 KB
testcase_40 AC 443 ms
45,264 KB
testcase_41 AC 469 ms
44,992 KB
testcase_42 AC 465 ms
45,128 KB
testcase_43 AC 439 ms
45,128 KB
testcase_44 AC 489 ms
45,128 KB
testcase_45 AC 448 ms
44,740 KB
testcase_46 AC 442 ms
45,136 KB
testcase_47 AC 455 ms
45,248 KB
testcase_48 AC 456 ms
44,736 KB
testcase_49 AC 436 ms
44,876 KB
testcase_50 AC 441 ms
45,248 KB
testcase_51 AC 453 ms
44,868 KB
testcase_52 AC 445 ms
45,252 KB
testcase_53 AC 483 ms
45,248 KB
testcase_54 AC 446 ms
45,136 KB
testcase_55 AC 435 ms
45,004 KB
testcase_56 AC 447 ms
44,744 KB
testcase_57 AC 467 ms
45,388 KB
testcase_58 AC 459 ms
45,244 KB
testcase_59 AC 440 ms
44,872 KB
testcase_60 AC 461 ms
45,004 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))

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))
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