結果
問題 | No.1594 Three Classes |
ユーザー | machoniump |
提出日時 | 2021-07-23 20:36:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 711 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 76,944 KB |
最終ジャッジ日時 | 2024-11-16 08:31:22 |
合計ジャッジ時間 | 7,571 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 39 ms
52,224 KB |
testcase_02 | AC | 40 ms
51,840 KB |
testcase_03 | AC | 322 ms
76,724 KB |
testcase_04 | AC | 642 ms
76,672 KB |
testcase_05 | AC | 657 ms
76,444 KB |
testcase_06 | AC | 70 ms
70,144 KB |
testcase_07 | AC | 349 ms
76,564 KB |
testcase_08 | AC | 618 ms
76,436 KB |
testcase_09 | AC | 610 ms
76,564 KB |
testcase_10 | AC | 630 ms
76,944 KB |
testcase_11 | AC | 626 ms
76,308 KB |
testcase_12 | AC | 624 ms
76,176 KB |
testcase_13 | AC | 62 ms
64,256 KB |
testcase_14 | AC | 293 ms
76,312 KB |
testcase_15 | AC | 295 ms
76,440 KB |
testcase_16 | AC | 160 ms
76,696 KB |
testcase_17 | AC | 332 ms
76,564 KB |
testcase_18 | AC | 38 ms
52,352 KB |
testcase_19 | AC | 87 ms
76,544 KB |
testcase_20 | AC | 106 ms
76,288 KB |
ソースコード
def II():return int(input()) def SI():return str(input()) def MI():return map(int,input().split()) def MS():return map(str,input().split()) def LI():return list(map(int,input().split())) def SLI():return sorted(list(map(int,input().split()))) def LS():return list(map(str,input().split())) def base10int(value, base): if (int(value / base)): return base10int(int(value / base), base) + str(value % base) return str(value % base) n=II() e=LI() for i in range(3**n): A=0 B=0 C=0 a=base10int(i,3) la=len(a) for j in range(la): if int(a[j])%3==0: A+=e[j] elif int(a[j])%3==1: B+=e[j] else: C+=e[j] if A==B and B==C: print("Yes") exit() print("No")