結果

問題 No.1987 Sandglass Inconvenience
ユーザー lloyzlloyz
提出日時 2022-06-24 22:26:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 489 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-11-08 18:21:20
合計ジャッジ時間 4,297 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
65,792 KB
testcase_01 AC 146 ms
76,416 KB
testcase_02 WA -
testcase_03 AC 75 ms
72,832 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 138 ms
76,288 KB
testcase_07 AC 137 ms
76,288 KB
testcase_08 AC 138 ms
76,288 KB
testcase_09 AC 141 ms
76,160 KB
testcase_10 AC 139 ms
76,416 KB
testcase_11 AC 140 ms
76,288 KB
testcase_12 AC 137 ms
76,160 KB
testcase_13 AC 137 ms
76,416 KB
testcase_14 AC 139 ms
76,160 KB
testcase_15 AC 66 ms
65,152 KB
testcase_16 WA -
testcase_17 AC 138 ms
76,288 KB
testcase_18 WA -
testcase_19 AC 67 ms
65,792 KB
testcase_20 AC 41 ms
51,968 KB
testcase_21 AC 42 ms
52,224 KB
testcase_22 AC 67 ms
65,920 KB
testcase_23 AC 54 ms
61,312 KB
testcase_24 AC 137 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

L = list(map(int, input().split()))
x = int(input())

for P in product(range(3), repeat=6):
    LL = []
    for i in range(6):
        LL.append(L[P[i]])
    for bit in range(3**6):
        Q = []
        bitc = bit
        for i in range(6):
            Q.append(bitc % 3 - 1)
            bitc //= 3
        res = 0
        for i in range(6):
            res += Q[i] * LL[i]
        if abs(res) == x:
            print("Yes")
            exit()
print("No")
0