結果
問題 | No.1747 Many Formulae 2 |
ユーザー | roaris |
提出日時 | 2021-11-19 21:57:53 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,783 ms / 2,000 ms |
コード長 | 457 bytes |
コンパイル時間 | 3,274 ms |
コンパイル使用メモリ | 82,332 KB |
実行使用メモリ | 63,984 KB |
最終ジャッジ日時 | 2025-01-01 17:20:56 |
合計ジャッジ時間 | 5,493 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
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)