結果

問題 No.1461 しあはせや歩みゆく?
ユーザー TomoyarnTomoyarn
提出日時 2022-01-16 11:16:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 125 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 115,328 KB
最終ジャッジ日時 2024-11-23 05:34:51
合計ジャッジ時間 56,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,344 KB
testcase_01 AC 39 ms
109,696 KB
testcase_02 AC 37 ms
57,344 KB
testcase_03 AC 37 ms
109,440 KB
testcase_04 AC 38 ms
57,088 KB
testcase_05 AC 38 ms
109,184 KB
testcase_06 AC 41 ms
63,232 KB
testcase_07 AC 41 ms
115,328 KB
testcase_08 AC 42 ms
62,592 KB
testcase_09 AC 43 ms
114,944 KB
testcase_10 AC 40 ms
62,848 KB
testcase_11 AC 60 ms
115,200 KB
testcase_12 AC 49 ms
64,880 KB
testcase_13 AC 133 ms
62,592 KB
testcase_14 AC 72 ms
64,164 KB
testcase_15 AC 560 ms
115,268 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 35 ms
51,968 KB
testcase_35 AC 35 ms
51,840 KB
testcase_36 AC 40 ms
115,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
step = [1, 1, 1, -1, -1]

cnt = 0
dist = 0
while dist < N:
    dist += step[cnt % 5]
    cnt += 1
print(cnt)
0