結果
| 問題 | 
                            No.1256 連続整数列
                             | 
                    
| コンテスト | |
| ユーザー | 
                             burita083
                         | 
                    
| 提出日時 | 2022-04-24 09:56:09 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 184 bytes | 
| コンパイル時間 | 151 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 15,872 KB | 
| 最終ジャッジ日時 | 2024-06-25 20:05:17 | 
| 合計ジャッジ時間 | 3,632 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 1 TLE * 1 -- * 24 | 
ソースコード
A = int(input())
for i in range(3, 10**8, 2):
  if A % i != 0:
    continue
  temp = A // i
  a = i 
  a -= 1
  a = a // 2
  if temp - a >= 1:
    print("YES")
    exit()
print("NO")
            
            
            
        
            
burita083