結果
問題 | No.1823 Tricolor Dango |
ユーザー | ikoma |
提出日時 | 2022-01-28 22:33:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 372 bytes |
コンパイル時間 | 211 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 100,120 KB |
最終ジャッジ日時 | 2024-06-09 15:51:05 |
合計ジャッジ時間 | 9,161 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,736 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 256 ms
78,788 KB |
testcase_12 | WA | - |
testcase_13 | AC | 242 ms
80,144 KB |
testcase_14 | AC | 286 ms
80,224 KB |
testcase_15 | AC | 291 ms
79,900 KB |
testcase_16 | AC | 177 ms
80,768 KB |
testcase_17 | AC | 198 ms
80,844 KB |
testcase_18 | AC | 248 ms
87,296 KB |
testcase_19 | AC | 395 ms
100,120 KB |
testcase_20 | AC | 258 ms
87,168 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
import sys input = sys.stdin.readline from heapq import * T=int(input()) for t in range(T): N=int(input()) A=list(map(lambda x:-int(x),input().split())) heapify(A) while len(A)>2: a,b,c=heappop(A),heappop(A),heappop(A) a-=c b-=c if a<0: heappush(A, a) if b<0: heappush(A, b) print("Yes" if len(A)==0 else "No")