結果
問題 | No.1594 Three Classes |
ユーザー | OhnoHiroki |
提出日時 | 2024-02-27 22:10:34 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 327 bytes |
コンパイル時間 | 269 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-29 12:10:28 |
合計ジャッジ時間 | 38,612 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 32 ms
10,880 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 787 ms
10,752 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 31 ms
10,624 KB |
testcase_19 | AC | 37 ms
10,624 KB |
testcase_20 | AC | 100 ms
10,624 KB |
ソースコード
N = int(input())E = list(map(int, input().split()))ans = "No"for i in range(3**N):pa,pb,pc = 0,0,0for j in range(N):if i%3 == 0:pa += E[j]elif i%3 == 1:pb += E[j]else:pc += E[j]i //= 3if pa == pb == pc:ans = "Yes"print(ans)