結果

問題 No.1992 Tendon Walk
ユーザー 310icecrystal310icecrystal
提出日時 2023-07-06 05:07:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 87,148 KB
実行使用メモリ 71,620 KB
最終ジャッジ日時 2023-09-27 06:01:51
合計ジャッジ時間 1,687 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,564 KB
testcase_01 AC 67 ms
71,280 KB
testcase_02 AC 67 ms
71,436 KB
testcase_03 AC 66 ms
71,312 KB
testcase_04 AC 69 ms
71,432 KB
testcase_05 AC 66 ms
71,620 KB
testcase_06 AC 66 ms
71,424 KB
testcase_07 AC 67 ms
71,268 KB
testcase_08 AC 67 ms
71,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())

li = [2,2,-1,-1,2,-1,-1]
ans = 0
now = 0
for _ in range(10):
    for x in li:
        now += x
        ans += abs(x)
        if now == X:
            print(ans)
            exit()
0