結果
問題 | No.639 An Ordinary Sequence |
ユーザー | coro65536 |
提出日時 | 2018-01-26 23:57:50 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 463 bytes |
コンパイル時間 | 683 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 43,576 KB |
最終ジャッジ日時 | 2024-06-08 16:05:41 |
合計ジャッジ時間 | 12,900 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 451 ms
43,308 KB |
testcase_03 | AC | 445 ms
43,448 KB |
testcase_04 | AC | 445 ms
43,440 KB |
testcase_05 | AC | 453 ms
43,320 KB |
testcase_06 | AC | 558 ms
43,192 KB |
testcase_07 | AC | 568 ms
43,436 KB |
testcase_08 | AC | 549 ms
43,312 KB |
testcase_09 | AC | 442 ms
43,440 KB |
testcase_10 | AC | 447 ms
43,568 KB |
testcase_11 | AC | 448 ms
43,312 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 445 ms
43,440 KB |
testcase_18 | RE | - |
ソースコード
# C import math import scipy.misc as scm N = int(input()) if N == 0: print(1) quit() if N == 1 or N == 2: print(2) quit() arr = [[0 for j in range(int(math.log(N, 5))+1)] for i in range(int(math.log(N, 3))+1)] # 1 indexed ans = 2 + int(math.log(N, 5)) + int(math.log(N, 3)) for i in range(1, int(math.log(N, 3))+1): for j in range(1, int(math.log(N, 5))+1): if 3**i * 5**j <= N: ans += scm.comb(i+j, i, 1) print(ans)