結果

問題 No.1256 連続整数列
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2022-07-03 21:57:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 519 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 577,472 KB
最終ジャッジ日時 2024-11-29 20:26:16
合計ジャッジ時間 22,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
64,256 KB
testcase_01 AC 43 ms
341,796 KB
testcase_02 TLE -
testcase_03 MLE -
testcase_04 AC 43 ms
58,624 KB
testcase_05 AC 42 ms
53,376 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 458 ms
254,592 KB
testcase_08 AC 1,167 ms
288,548 KB
testcase_09 WA -
testcase_10 AC 42 ms
53,120 KB
testcase_11 AC 41 ms
53,376 KB
testcase_12 AC 42 ms
53,376 KB
testcase_13 AC 1,877 ms
288,416 KB
testcase_14 AC 1,332 ms
288,672 KB
testcase_15 AC 42 ms
53,248 KB
testcase_16 AC 1,292 ms
288,672 KB
testcase_17 AC 42 ms
53,376 KB
testcase_18 TLE -
testcase_19 AC 44 ms
53,248 KB
testcase_20 AC 1,954 ms
288,676 KB
testcase_21 TLE -
testcase_22 AC 44 ms
53,376 KB
testcase_23 AC 43 ms
53,248 KB
testcase_24 AC 1,487 ms
289,188 KB
testcase_25 AC 45 ms
342,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

bufio_scanner = []


def main():
    a = int(fmt_scan())
    s = 0
    ans = "NO"
    q = deque()
    for i in range(int(a / 3) + 10, 0, -1):
        q.append(i)
        s += i
        if s > a:
            s -= q.popleft()
        if s == a:
            ans = "YES"
            break
    print(ans)


def fmt_scan() -> str:
    sc = bufio_scanner
    if len(sc) == 0:
        for v in input().split()[::-1]:
            sc.append(v)
    res = sc[-1]
    sc.pop()
    return res


main()
0