結果

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

ソースコード

diff #

N=int(input())

def judge(N):
    route=(1+8*N)**(1/2)
    if(route==int(route)):
        route_1=(route-1)/2
        if(int(route_1)==route_1):
            print("YES")
            return int((route-1)/2)
    return "NO"

print(judge(N))
0