結果

問題 No.1584 Stones around Circle Pond
ユーザー googol_S0googol_S0
提出日時 2021-07-02 22:22:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 60,928 KB
最終ジャッジ日時 2024-06-29 12:02:39
合計ジャッジ時間 4,812 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 45 ms
60,544 KB
testcase_04 AC 45 ms
60,160 KB
testcase_05 AC 45 ms
59,904 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 46 ms
60,800 KB
testcase_08 AC 46 ms
59,904 KB
testcase_09 AC 46 ms
60,288 KB
testcase_10 AC 45 ms
59,904 KB
testcase_11 AC 46 ms
60,416 KB
testcase_12 AC 46 ms
60,288 KB
testcase_13 AC 45 ms
60,032 KB
testcase_14 AC 45 ms
60,392 KB
testcase_15 AC 45 ms
60,544 KB
testcase_16 AC 37 ms
52,352 KB
testcase_17 AC 45 ms
60,544 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 45 ms
60,032 KB
testcase_24 AC 46 ms
60,288 KB
testcase_25 AC 47 ms
59,984 KB
testcase_26 AC 39 ms
51,968 KB
testcase_27 AC 46 ms
60,288 KB
testcase_28 AC 45 ms
60,032 KB
testcase_29 AC 39 ms
52,480 KB
testcase_30 AC 46 ms
60,288 KB
testcase_31 AC 47 ms
60,544 KB
testcase_32 AC 46 ms
60,544 KB
testcase_33 AC 46 ms
60,160 KB
testcase_34 AC 46 ms
60,288 KB
testcase_35 AC 45 ms
60,288 KB
testcase_36 AC 49 ms
60,288 KB
testcase_37 AC 47 ms
60,160 KB
testcase_38 AC 48 ms
60,288 KB
testcase_39 AC 47 ms
60,672 KB
testcase_40 AC 46 ms
60,544 KB
testcase_41 AC 47 ms
60,416 KB
testcase_42 AC 46 ms
60,288 KB
testcase_43 AC 38 ms
52,096 KB
testcase_44 AC 47 ms
60,544 KB
testcase_45 AC 46 ms
60,672 KB
testcase_46 AC 45 ms
60,032 KB
testcase_47 AC 46 ms
60,084 KB
testcase_48 AC 46 ms
60,288 KB
testcase_49 AC 45 ms
59,628 KB
testcase_50 AC 46 ms
60,032 KB
testcase_51 AC 45 ms
60,288 KB
testcase_52 AC 46 ms
59,776 KB
testcase_53 AC 47 ms
60,416 KB
testcase_54 AC 45 ms
60,544 KB
testcase_55 AC 39 ms
52,480 KB
testcase_56 AC 45 ms
60,288 KB
testcase_57 AC 46 ms
60,928 KB
testcase_58 AC 48 ms
60,288 KB
testcase_59 AC 46 ms
60,288 KB
testcase_60 AC 46 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,L=map(int,input().split())
D=list(map(int,input().split()))
B=list(map(int,input().split()))
for i in range(N):
  D.append(D[i]+L)
X=[[0]*(N*2) for i in range(N*2)]
for i in range(N*2):
  for j in range(N*2):
    X[i][j]=min((D[i]-D[j])%(2*L),(D[j]-D[i])%(2*L))
U=sum(B)
V=sum(X[0])
if U%V:
  print('No')
  exit()
Z=U//V
for i in range(N*2):
  B[i]-=X[0][i]*Z
if max([B[i]+B[i+N] for i in range(N)])==0:
  print('Yes')
else:
  print('No')
0