結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,012 KB
testcase_01 AC 37 ms
52,896 KB
testcase_02 AC 48 ms
63,584 KB
testcase_03 AC 36 ms
52,520 KB
testcase_04 AC 40 ms
58,288 KB
testcase_05 AC 37 ms
53,432 KB
testcase_06 AC 37 ms
52,208 KB
testcase_07 AC 45 ms
62,224 KB
testcase_08 AC 38 ms
52,344 KB
testcase_09 AC 38 ms
52,724 KB
testcase_10 AC 37 ms
52,780 KB
testcase_11 AC 38 ms
52,864 KB
testcase_12 AC 37 ms
52,556 KB
testcase_13 AC 37 ms
52,696 KB
testcase_14 AC 35 ms
52,076 KB
testcase_15 AC 54 ms
66,096 KB
testcase_16 AC 46 ms
61,948 KB
testcase_17 AC 36 ms
52,588 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
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