結果

問題 No.1747 Many Formulae 2
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-11-19 21:26:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 782 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 68,436 KB
最終ジャッジ日時 2024-06-10 07:49:45
合計ジャッジ時間 1,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,520 KB
testcase_01 AC 37 ms
52,556 KB
testcase_02 AC 66 ms
68,436 KB
testcase_03 AC 38 ms
52,800 KB
testcase_04 AC 48 ms
59,888 KB
testcase_05 AC 37 ms
53,176 KB
testcase_06 AC 38 ms
52,276 KB
testcase_07 AC 49 ms
62,100 KB
testcase_08 AC 39 ms
52,752 KB
testcase_09 AC 38 ms
53,244 KB
testcase_10 AC 41 ms
59,116 KB
testcase_11 AC 45 ms
60,656 KB
testcase_12 AC 40 ms
52,612 KB
testcase_13 AC 40 ms
52,036 KB
testcase_14 AC 40 ms
52,372 KB
testcase_15 AC 60 ms
67,772 KB
testcase_16 AC 50 ms
62,540 KB
testcase_17 AC 36 ms
53,236 KB
testcase_18 AC 38 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)-1
def cul(m):
    if m == 1:
        return False
    res = True
    cnt = 2
    while cnt ** 2 <= m:
        if m % cnt == 0:
            res = False
        cnt += 1
    return res
ans = 0
for i in range(1 << n):
    res = s[0]
    for j in range(n):
        if i & (1 << j):
            res += "+"
        res += s[j+1]
    m = eval(res)
    if cul(m):
        ans += 1
print(ans)
0