結果

問題 No.1747 Many Formulae 2
ユーザー pypypymipypypymi
提出日時 2022-02-24 22:52:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 69,760 KB
最終ジャッジ日時 2024-07-02 14:07:42
合計ジャッジ時間 4,621 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 39 ms
57,628 KB
testcase_02 AC 62 ms
69,248 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 44 ms
60,160 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 73 ms
63,744 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 36 ms
52,608 KB
testcase_10 AC 37 ms
52,608 KB
testcase_11 AC 44 ms
60,544 KB
testcase_12 AC 38 ms
57,216 KB
testcase_13 AC 33 ms
52,096 KB
testcase_14 AC 32 ms
52,096 KB
testcase_15 AC 1,427 ms
69,760 KB
testcase_16 AC 1,422 ms
64,000 KB
testcase_17 AC 33 ms
51,840 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
s = list(input())
s_space = list(" ".join(s))
result = []
lis=list(range(0,len(s)-1))

def judge(n):
    for i in range(2,n):
        if n%i==0:
            return 0
    return 1
        


for n in range(0,len(lis)+1):
    for conb in itertools.combinations(lis, n):
        result.append(list(conb))
count = 0        
for i in result:
    s_v = s_space.copy()
    for j in i:
        s_v[j*2+1]="+"
    v = eval("".join(list(filter(lambda x:x!=" ",s_v))))
    count += judge(v)
print(count)
        
    
0