結果
| 問題 |
No.648 お や す み
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-18 15:53:02 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 2,000 ms |
| コード長 | 461 bytes |
| コンパイル時間 | 188 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-09-19 21:52:18 |
| 合計ジャッジ時間 | 4,262 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 84 |
ソースコード
from math import floor, sqrt
def main():
n = int(input())
i_small = floor(sqrt(n*2))
if i_small * (i_small+1) == 2 * n:
print("YES")
print(i_small)
return
if (i_small+2) * (i_small+1) == 2 * n:
print("YES")
print(i_small+1)
return
if (i_small+3) * (i_small+2) == 2 * n:
print("YES")
print(i_small+2)
return
print("NO")
if __name__ == "__main__":
main()