結果

問題 No.1459 スマホを落としたいだけなのに
ユーザー ayaoniayaoni
提出日時 2021-04-02 00:21:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 59,312 KB
最終ジャッジ日時 2024-06-01 04:56:58
合計ジャッジ時間 2,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,648 KB
testcase_01 AC 40 ms
52,212 KB
testcase_02 AC 38 ms
52,568 KB
testcase_03 AC 38 ms
53,296 KB
testcase_04 AC 38 ms
52,560 KB
testcase_05 AC 39 ms
53,144 KB
testcase_06 AC 38 ms
53,764 KB
testcase_07 AC 38 ms
52,196 KB
testcase_08 AC 38 ms
51,812 KB
testcase_09 AC 39 ms
52,688 KB
testcase_10 AC 39 ms
52,764 KB
testcase_11 AC 42 ms
58,972 KB
testcase_12 AC 41 ms
58,772 KB
testcase_13 AC 41 ms
58,248 KB
testcase_14 AC 40 ms
57,988 KB
testcase_15 AC 43 ms
58,968 KB
testcase_16 AC 42 ms
58,788 KB
testcase_17 AC 41 ms
57,856 KB
testcase_18 AC 41 ms
58,428 KB
testcase_19 AC 40 ms
58,780 KB
testcase_20 AC 41 ms
58,352 KB
testcase_21 AC 41 ms
58,604 KB
testcase_22 AC 41 ms
57,992 KB
testcase_23 AC 41 ms
58,268 KB
testcase_24 AC 41 ms
58,828 KB
testcase_25 AC 41 ms
58,400 KB
testcase_26 AC 42 ms
58,432 KB
testcase_27 AC 41 ms
58,140 KB
testcase_28 AC 42 ms
58,848 KB
testcase_29 AC 41 ms
58,488 KB
testcase_30 AC 41 ms
57,576 KB
testcase_31 AC 40 ms
59,312 KB
testcase_32 AC 40 ms
59,028 KB
testcase_33 AC 41 ms
58,272 KB
testcase_34 AC 41 ms
58,304 KB
testcase_35 AC 41 ms
58,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()

for i in range(10**5):
    if i*(i+1) >= 2*N:
        print(i)
        break
0