結果

問題 No.1747 Many Formulae 2
ユーザー roarisroaris
提出日時 2021-11-19 21:57:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,595 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,836 KB
実行使用メモリ 63,616 KB
最終ジャッジ日時 2024-06-10 08:48:50
合計ジャッジ時間 4,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,464 KB
testcase_01 AC 40 ms
60,760 KB
testcase_02 AC 45 ms
62,356 KB
testcase_03 AC 34 ms
54,132 KB
testcase_04 AC 41 ms
61,796 KB
testcase_05 AC 35 ms
54,616 KB
testcase_06 AC 35 ms
54,300 KB
testcase_07 AC 70 ms
63,216 KB
testcase_08 AC 40 ms
54,800 KB
testcase_09 AC 35 ms
53,912 KB
testcase_10 AC 36 ms
54,920 KB
testcase_11 AC 38 ms
54,084 KB
testcase_12 AC 38 ms
60,544 KB
testcase_13 AC 37 ms
54,784 KB
testcase_14 AC 39 ms
53,988 KB
testcase_15 AC 1,581 ms
63,616 KB
testcase_16 AC 1,595 ms
63,416 KB
testcase_17 AC 39 ms
53,724 KB
testcase_18 AC 37 ms
55,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

s = list(input()[:-1])
n = len(s)
ans = 0

for S in range(1<<(n-1)):
    num = 0
    now = 0
    
    for i in range(n):
        now = 10*now+int(s[i])
        
        if (S>>i)&1:
            num += now
            now = 0
    
    num += now
    
    if num==1:
        continue
    
    for i in range(2, num):
        if num%i==0:
            break
    else:
        ans += 1

print(ans)
0