結果
問題 | No.719 Coprime |
ユーザー | rookzeno |
提出日時 | 2018-07-28 00:06:51 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 675 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 44,632 KB |
最終ジャッジ日時 | 2024-07-05 16:50:15 |
合計ジャッジ時間 | 34,727 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 493 ms
43,856 KB |
testcase_01 | AC | 492 ms
44,120 KB |
testcase_02 | AC | 504 ms
43,980 KB |
testcase_03 | AC | 494 ms
44,248 KB |
testcase_04 | AC | 498 ms
44,116 KB |
testcase_05 | AC | 502 ms
44,620 KB |
testcase_06 | AC | 499 ms
44,112 KB |
testcase_07 | AC | 500 ms
44,372 KB |
testcase_08 | AC | 496 ms
43,980 KB |
testcase_09 | AC | 498 ms
44,368 KB |
testcase_10 | AC | 517 ms
43,984 KB |
testcase_11 | AC | 503 ms
44,236 KB |
testcase_12 | AC | 499 ms
43,984 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 507 ms
43,992 KB |
testcase_17 | AC | 510 ms
43,992 KB |
testcase_18 | AC | 501 ms
44,496 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 509 ms
44,624 KB |
testcase_23 | AC | 507 ms
44,504 KB |
testcase_24 | AC | 509 ms
44,116 KB |
testcase_25 | AC | 507 ms
44,240 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 502 ms
44,496 KB |
testcase_31 | AC | 500 ms
44,240 KB |
testcase_32 | AC | 508 ms
44,492 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 505 ms
43,980 KB |
testcase_39 | AC | 508 ms
43,980 KB |
testcase_40 | AC | 504 ms
44,116 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
ソースコード
import numpy as np N = int(input()) def get_sieve_of_eratosthenes(n): if not isinstance(n, int): raise TypeError("n is int-type.") if n < 2: raise ValueError("n is more than 2") data = [i for i in range(2, n + 1)] for d in data: data = [x for x in data if (x == d or x % d != 0)] return data so = get_sieve_of_eratosthenes(N) so = np.array(so) ans = sum(so) d = [] for i in range(N): a = so[i] if a in d: break if a* a> N: break b = a+0 while b *a <=N: b =b*a c = so[so < N//a] try: c = c[-1] except: c =0 if b-a < a*c-a-c: ans += a*c -a-c d.append(c) else: ans += b-a print(ans)