結果
問題 | No.1288 yuki collection |
ユーザー | persimmon-persimmon |
提出日時 | 2021-02-17 08:03:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 717 bytes |
コンパイル時間 | 428 ms |
コンパイル使用メモリ | 82,116 KB |
実行使用メモリ | 77,132 KB |
最終ジャッジ日時 | 2024-09-13 18:41:30 |
合計ジャッジ時間 | 5,146 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,408 KB |
testcase_01 | AC | 39 ms
53,196 KB |
testcase_02 | AC | 39 ms
52,416 KB |
testcase_03 | WA | - |
testcase_04 | AC | 38 ms
53,188 KB |
testcase_05 | AC | 39 ms
53,936 KB |
testcase_06 | WA | - |
testcase_07 | AC | 39 ms
53,540 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 88 ms
76,248 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 92 ms
74,888 KB |
testcase_37 | WA | - |
testcase_38 | AC | 88 ms
73,136 KB |
testcase_39 | AC | 89 ms
71,600 KB |
testcase_40 | AC | 45 ms
61,872 KB |
testcase_41 | AC | 38 ms
53,152 KB |
testcase_42 | AC | 38 ms
53,536 KB |
ソースコード
n=int(input()) s=list(input()) v=list(map(int,input().split())) taken=[0]*n pre=-1 ans=0 while pre!=ans: y=[0,-1] yu=[0,-1,-1] yuk=[0,-1,-1,-1] yuki=[0,-1,-1,-1,-1] pre=ans for i in range(n): if taken[i]==1:continue if s[i]=='y': if y[0]<v[i]: y=[v[i],i] elif s[i]=='u' and y[0]>0: if yu[0]<v[i]+y[0]: yu=[v[i]+y[0],y[1],i] elif s[i]=='k' and yu[0]>0: if yuk[0]<v[i]+yu[0]: yuk=[v[i]+yu[0],yu[1],yu[2],i] elif s[i]=='i' and yuk[0]>0: if yuki[0]<v[i]+yuk[0]: yuki=[v[i]+yuk[0],yuk[1],yuk[2],yuk[3],i] if yuki[0]>0: ans+=yuki[0] taken[yuki[1]]=1 taken[yuki[2]]=1 taken[yuki[3]]=1 taken[yuki[4]]=1 print(ans)