結果
問題 | No.276 連続する整数の和(1) |
ユーザー | yumechi |
提出日時 | 2015-09-04 23:32:30 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 407 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 16,384 KB |
最終ジャッジ日時 | 2024-07-19 02:19:57 |
合計ジャッジ時間 | 2,793 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
16,256 KB |
testcase_01 | AC | 28 ms
10,624 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
n = int(input()) pli = [2, 3] for i in range(1, n, 6): for p in pli: if i-1 % p == 0: break else: pli.append(i-1) for p in pli: if i+1 % p == 0: break else: pli.append(i+1) t = [1] tn = n * (n + 1) // 2 for i in pli: while tn % i == 0: tn //= i t.append(i) li = [1] for i in t: for j in range(len(li)): li.append(li[j] * i) res = [i for i in li if i <= n] print(res[len(res)-1])