結果

問題 No.648  お や す み 
ユーザー wajima_wataru
提出日時 2018-03-03 19:49:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-13 21:14:47
合計ジャッジ時間 4,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 84
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


def is_square(n):
    r = round(math.sqrt(n))
    return True if r ** 2 == n else False

n = int(input())
if not is_square(8 * n + 1):
    print('NO')
else:
    print('YES')
    print(round((math.sqrt(8 * n + 1) - 1) // 2))
0