結果

問題 No.648  お や す み 
ユーザー るこーそーるこーそー
提出日時 2024-09-20 09:39:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-09-20 09:39:19
合計ジャッジ時間 5,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,196 KB
testcase_01 WA -
testcase_02 AC 35 ms
53,016 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
53,840 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
52,292 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 33 ms
52,392 KB
testcase_21 AC 33 ms
53,152 KB
testcase_22 AC 38 ms
52,024 KB
testcase_23 AC 35 ms
52,848 KB
testcase_24 AC 34 ms
52,812 KB
testcase_25 AC 35 ms
52,216 KB
testcase_26 AC 35 ms
52,484 KB
testcase_27 AC 35 ms
52,464 KB
testcase_28 AC 37 ms
51,876 KB
testcase_29 AC 36 ms
52,736 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 37 ms
52,760 KB
testcase_51 AC 37 ms
52,384 KB
testcase_52 AC 35 ms
52,024 KB
testcase_53 AC 34 ms
52,356 KB
testcase_54 AC 36 ms
52,280 KB
testcase_55 AC 35 ms
51,876 KB
testcase_56 AC 36 ms
52,836 KB
testcase_57 AC 34 ms
53,124 KB
testcase_58 AC 36 ms
52,700 KB
testcase_59 AC 36 ms
52,644 KB
testcase_60 AC 36 ms
52,316 KB
testcase_61 AC 36 ms
52,568 KB
testcase_62 AC 35 ms
52,124 KB
testcase_63 AC 36 ms
53,424 KB
testcase_64 AC 35 ms
52,480 KB
testcase_65 AC 34 ms
52,808 KB
testcase_66 AC 35 ms
52,944 KB
testcase_67 AC 35 ms
53,848 KB
testcase_68 AC 35 ms
53,760 KB
testcase_69 AC 36 ms
52,480 KB
testcase_70 AC 35 ms
53,248 KB
testcase_71 AC 37 ms
52,624 KB
testcase_72 AC 36 ms
52,280 KB
testcase_73 AC 36 ms
52,284 KB
testcase_74 AC 36 ms
52,472 KB
testcase_75 AC 35 ms
52,372 KB
testcase_76 AC 34 ms
52,360 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 AC 36 ms
52,616 KB
testcase_83 AC 34 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

ng,ok=-1,10**18
while abs(ok-ng)>1:
    mid=(ok+ng)//2
    if mid*(mid+1)//2<n:
        ng=mid
    else:
        ok=mid

if ok<10**9:
    print("YES",ok,sep="\n")
else:
    print("NO")
0