結果
| 問題 |
No.491 10^9+1と回文
|
| コンテスト | |
| ユーザー |
aaaaa
|
| 提出日時 | 2017-03-13 12:01:22 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 208 ms / 1,000 ms |
| コード長 | 146 bytes |
| コンパイル時間 | 176 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-10-01 08:37:35 |
| 合計ジャッジ時間 | 22,678 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 103 |
ソースコード
n=int(input())//-~10**9;c=0
for x in range(1,10**5):
b=d=e=str(x);b=b[::-1];d+=b;e+=b[1:]
if int(d)<=n:c+=1
if int(e)<=n:c+=1
print(c)
aaaaa