結果

問題 No.1747 Many Formulae 2
ユーザー mesame3993mesame3993
提出日時 2021-11-20 00:28:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 68,464 KB
最終ジャッジ日時 2024-06-10 12:21:22
合計ジャッジ時間 1,713 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,316 KB
testcase_01 AC 37 ms
53,112 KB
testcase_02 AC 57 ms
68,464 KB
testcase_03 AC 37 ms
52,920 KB
testcase_04 AC 42 ms
59,364 KB
testcase_05 AC 37 ms
53,332 KB
testcase_06 AC 37 ms
52,884 KB
testcase_07 AC 51 ms
62,792 KB
testcase_08 AC 38 ms
53,000 KB
testcase_09 AC 37 ms
53,164 KB
testcase_10 AC 39 ms
53,404 KB
testcase_11 AC 41 ms
54,228 KB
testcase_12 AC 38 ms
53,292 KB
testcase_13 AC 39 ms
52,776 KB
testcase_14 AC 38 ms
53,844 KB
testcase_15 AC 61 ms
68,056 KB
testcase_16 AC 50 ms
63,280 KB
testcase_17 AC 38 ms
52,884 KB
testcase_18 AC 37 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_prime(n):
  if n == 1:
    return False
  limit = int(n**0.5)+1
  for i in range(2, limit):
    if n%i == 0:
      return False
  return True

def main():
  s = input()
  ans = 0
  n = len(s)
  for b in range(2**(n-1)):
    formula = []
    for i in range(n):
      formula.append(s[i])
      if i<n-1 and (b>>i)&1:
        formula.append('+')
    ans += is_prime(eval(''.join(formula)))
  print(ans)
main()
0