結果

問題 No.1747 Many Formulae 2
ユーザー ysys
提出日時 2022-03-09 02:22:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 66,808 KB
最終ジャッジ日時 2024-07-26 20:29:17
合計ジャッジ時間 1,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,584 KB
testcase_01 AC 38 ms
52,900 KB
testcase_02 AC 49 ms
63,296 KB
testcase_03 AC 39 ms
52,324 KB
testcase_04 AC 40 ms
58,932 KB
testcase_05 AC 35 ms
53,268 KB
testcase_06 AC 35 ms
52,348 KB
testcase_07 AC 45 ms
60,964 KB
testcase_08 AC 35 ms
52,704 KB
testcase_09 AC 35 ms
53,252 KB
testcase_10 AC 36 ms
53,956 KB
testcase_11 AC 36 ms
53,092 KB
testcase_12 AC 35 ms
52,932 KB
testcase_13 AC 36 ms
52,368 KB
testcase_14 AC 35 ms
53,340 KB
testcase_15 AC 51 ms
66,808 KB
testcase_16 AC 44 ms
62,956 KB
testcase_17 AC 36 ms
53,088 KB
testcase_18 AC 36 ms
52,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
if S == '1':
  print(0)
  exit()
N = len(S)
ans = 0
for i in range(1 << (N - 1)):
  res = 0
  tmp = S[0]
  for j in range(N - 1):
    if i & 1 << j:
      res += int(tmp)
      tmp = S[j + 1]
    else:
      tmp += S[j + 1]
  if tmp != '':
    res += int(tmp)
  for j in range(2, int(res ** 0.5) + 1):
    if res % j == 0:
      break
  else:
    ans += 1
print(ans)
0