結果
| 問題 | No.491 10^9+1と回文 |
| コンテスト | |
| ユーザー |
uuu
|
| 提出日時 | 2017-03-15 23:02:47 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 413 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 804,696 KB |
| 最終ジャッジ日時 | 2026-03-25 09:30:44 |
| 合計ジャッジ時間 | 40,330 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 MLE * 1 |
| other | AC * 79 TLE * 10 MLE * 14 |
ソースコード
N = int(input())
L = [str(i) for i in range(1, N//(10**9 + 1) + 1)]
ans = 0
for i in L:
if i == "".join(list(reversed(i))):
ans += 1
print(ans)
uuu