結果
| 問題 | No.648 お や す み |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-12-27 20:34:17 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 287 bytes |
| コンパイル時間 | 375 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-12-27 20:34:24 |
| 合計ジャッジ時間 | 5,226 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 84 |
ソースコード
import math
def check(x):
return x * (x + 1) // 2
n = int(input())
ng = 0
ok = pow(10, 18) * 2
while ng + 1 != ok:
mid = (ng + ok) // 2
if n <= check(mid):
ok = mid
else:
ng = mid
if check(ok) == n:
print("Yes")
print(ok)
else:
print("No")