結果

問題 No.1459 スマホを落としたいだけなのに
ユーザー 👑 KazunKazun
提出日時 2021-08-11 19:24:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 90 bytes
コンパイル時間 765 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 58,872 KB
最終ジャッジ日時 2024-09-25 05:45:13
合計ジャッジ時間 2,848 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,828 KB
testcase_01 AC 34 ms
52,028 KB
testcase_02 AC 34 ms
52,316 KB
testcase_03 AC 35 ms
53,072 KB
testcase_04 AC 35 ms
51,876 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 34 ms
52,436 KB
testcase_07 AC 34 ms
51,984 KB
testcase_08 AC 34 ms
52,204 KB
testcase_09 AC 34 ms
53,032 KB
testcase_10 AC 33 ms
52,428 KB
testcase_11 AC 39 ms
58,124 KB
testcase_12 AC 38 ms
57,260 KB
testcase_13 AC 40 ms
58,644 KB
testcase_14 AC 38 ms
58,016 KB
testcase_15 AC 40 ms
57,744 KB
testcase_16 AC 37 ms
57,652 KB
testcase_17 AC 40 ms
57,484 KB
testcase_18 AC 38 ms
57,128 KB
testcase_19 AC 38 ms
57,584 KB
testcase_20 AC 39 ms
57,260 KB
testcase_21 AC 38 ms
57,872 KB
testcase_22 AC 38 ms
57,728 KB
testcase_23 AC 38 ms
57,940 KB
testcase_24 AC 38 ms
58,272 KB
testcase_25 AC 38 ms
58,428 KB
testcase_26 AC 38 ms
57,404 KB
testcase_27 AC 38 ms
58,072 KB
testcase_28 AC 37 ms
58,872 KB
testcase_29 AC 38 ms
58,284 KB
testcase_30 AC 40 ms
58,156 KB
testcase_31 AC 38 ms
57,120 KB
testcase_32 AC 38 ms
57,740 KB
testcase_33 AC 39 ms
57,416 KB
testcase_34 AC 39 ms
57,888 KB
testcase_35 AC 39 ms
58,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

S=0
i=1
while True:
    S+=i
    if S>=N:
        exit(print(i))
    i+=1
0