結果

問題 No.1747 Many Formulae 2
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-11-19 23:03:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 63,280 KB
最終ジャッジ日時 2024-06-10 10:28:22
合計ジャッジ時間 1,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,796 KB
testcase_01 AC 38 ms
52,368 KB
testcase_02 AC 46 ms
63,280 KB
testcase_03 AC 37 ms
52,000 KB
testcase_04 AC 39 ms
52,340 KB
testcase_05 AC 38 ms
52,212 KB
testcase_06 AC 38 ms
53,036 KB
testcase_07 AC 48 ms
62,448 KB
testcase_08 AC 39 ms
52,340 KB
testcase_09 AC 38 ms
53,104 KB
testcase_10 AC 37 ms
53,284 KB
testcase_11 AC 40 ms
52,948 KB
testcase_12 AC 38 ms
53,812 KB
testcase_13 AC 37 ms
52,528 KB
testcase_14 AC 39 ms
52,480 KB
testcase_15 AC 50 ms
62,736 KB
testcase_16 AC 50 ms
61,796 KB
testcase_17 AC 37 ms
53,248 KB
testcase_18 AC 38 ms
52,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_prime(x: int) -> bool:
	if x < 2: return False
	if x == 2 or x == 3 or x == 5: return True
	if x % 2 == 0 or x % 3 == 0 or x % 5 == 0: return False

	prime_number = 7
	difference = 4

	while prime_number ** 2 <= x:
		if x % prime_number == 0: return False

		prime_number += difference
		difference = 6 - difference

	return True

s = input()
n = len(s)
ans = 0
for b in range(1 << (n - 1)):
	now = s[0]
	cnt = 0
	for i in range(1, n):
		if b >> (i - 1) & 1:
			cnt += int(now)
			now = s[i]
		else:
			now += s[i]
	cnt += int(now)
	if is_prime(cnt):
		ans += 1
print(ans)
0