結果
問題 | No.492 IOI数列 |
ユーザー | omi_UT |
提出日時 | 2017-03-10 23:59:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 300 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,820 KB |
最終ジャッジ日時 | 2024-06-24 09:09:27 |
合計ジャッジ時間 | 2,637 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,820 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
n = int(input()) stri = 1 m = n while m//100>1: m = m//100 for i in range(m-1): stri = (stri*100+1) % 101010101010101010101 ans = 1 hoge = n//9984689 for i in range(hoge): ans = (ans*5)%1000000007 for i in range(n%9984689 - 1): ans = (ans*100+1) % 1000000007 print(ans) print(stri)