結果
問題 | No.719 Coprime |
ユーザー | rookzeno |
提出日時 | 2018-07-27 23:59:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 629 bytes |
コンパイル時間 | 255 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 44,592 KB |
最終ジャッジ日時 | 2024-07-05 16:34:59 |
合計ジャッジ時間 | 35,078 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 505 ms
44,340 KB |
testcase_01 | AC | 509 ms
44,204 KB |
testcase_02 | AC | 509 ms
43,828 KB |
testcase_03 | AC | 511 ms
44,076 KB |
testcase_04 | AC | 513 ms
43,824 KB |
testcase_05 | AC | 522 ms
44,204 KB |
testcase_06 | AC | 507 ms
44,204 KB |
testcase_07 | AC | 500 ms
43,952 KB |
testcase_08 | AC | 507 ms
43,812 KB |
testcase_09 | AC | 512 ms
43,952 KB |
testcase_10 | AC | 508 ms
43,952 KB |
testcase_11 | AC | 505 ms
43,948 KB |
testcase_12 | AC | 503 ms
43,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 508 ms
44,296 KB |
testcase_17 | AC | 507 ms
43,944 KB |
testcase_18 | AC | 508 ms
44,076 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 505 ms
43,956 KB |
testcase_23 | AC | 504 ms
43,828 KB |
testcase_24 | AC | 503 ms
43,820 KB |
testcase_25 | AC | 509 ms
44,460 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 501 ms
43,824 KB |
testcase_31 | AC | 499 ms
43,948 KB |
testcase_32 | AC | 510 ms
44,204 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 500 ms
44,200 KB |
testcase_39 | AC | 504 ms
43,984 KB |
testcase_40 | AC | 504 ms
43,956 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) for i in range(N): a = so[i] 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 else: ans += b-a print(ans)