結果
問題 | No.491 10^9+1と回文 |
ユーザー |
|
提出日時 | 2017-04-09 20:36:00 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 235 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 81,776 KB |
実行使用メモリ | 76,528 KB |
最終ジャッジ日時 | 2024-07-18 01:37:51 |
合計ジャッジ時間 | 8,046 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 63 MLE * 40 |
ソースコード
N = int( input() )ans = 0for i in range( 1, int( 1e5 ), 1 ):ng = Falseq = i * int( 1e9 + 1 )if q > N: breakf = str( q )for j in range( len( f ) ):ng |= f[ j ] != f[ len( f ) - 1 - j ]ans += not ngprint( ans )