結果
問題 | No.648 お や す み |
ユーザー | sekiya9311 |
提出日時 | 2018-02-09 22:56:03 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 340 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-13 21:01:03 |
合計ジャッジ時間 | 4,483 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 84 |
ソースコード
import sys N = int(input()) high = 2 * int(1e18) low = 0 while high - low > 5: mid = (high + low) // 2 if mid * (mid + 1) // 2 <= N: low = mid else: high = mid for i in range(10): if (low + i) * (low + i + 1) // 2 == N: print("YES") print(low + i) sys.exit() print("NO")