結果
| 問題 | 
                            No.3104 Simple Graph Problem
                             | 
                    
| コンテスト | |
| ユーザー | 
                             gew1fw
                         | 
                    
| 提出日時 | 2025-06-12 19:53:36 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 109 bytes | 
| コンパイル時間 | 146 ms | 
| コンパイル使用メモリ | 82,544 KB | 
| 実行使用メモリ | 67,288 KB | 
| 最終ジャッジ日時 | 2025-06-12 19:54:38 | 
| 合計ジャッジ時間 | 8,183 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 3 | 
| other | RE * 65 | 
ソースコード
n = int(input())
for i in range(n, 0, -1):
    s = str(i)
    if s == s[::-1]:
        print(i)
        break
            
            
            
        
            
gew1fw