結果

問題 No.1747 Many Formulae 2
ユーザー titan23titan23
提出日時 2022-06-14 13:50:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 71,288 KB
最終ジャッジ日時 2024-10-02 08:56:44
合計ジャッジ時間 1,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,036 KB
testcase_01 AC 36 ms
52,716 KB
testcase_02 AC 59 ms
71,288 KB
testcase_03 AC 34 ms
53,056 KB
testcase_04 AC 38 ms
59,940 KB
testcase_05 AC 37 ms
53,252 KB
testcase_06 AC 36 ms
53,156 KB
testcase_07 AC 54 ms
65,712 KB
testcase_08 AC 35 ms
52,264 KB
testcase_09 AC 35 ms
52,388 KB
testcase_10 AC 36 ms
53,064 KB
testcase_11 AC 36 ms
55,672 KB
testcase_12 AC 33 ms
53,520 KB
testcase_13 AC 33 ms
53,376 KB
testcase_14 AC 33 ms
52,844 KB
testcase_15 AC 56 ms
70,624 KB
testcase_16 AC 47 ms
65,844 KB
testcase_17 AC 35 ms
53,396 KB
testcase_18 AC 36 ms
53,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

def is_prime(n: int) -> bool:
  if n == 1:
    return 0
  for i in range(2, int(n**0.5)+1):
    if n % i == 0:
      return 0 
  return 1

###############

s = input()
n = len(s)
ans = 0
for i in range(1 << (n-1)):
  seq = ''
  for j in range(n-1):
    if i >> j & 1:
      seq += '+'
    else:
      seq += ' '
  tmp = s[0]
  for i in range(n-1):
    if seq[i] != ' ':
      tmp += seq[i]
    tmp += s[i+1]
  ans += is_prime(eval(tmp))
print(ans)
0