結果

問題 No.1256 連続整数列
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2022-07-03 21:55:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,504 KB
最終ジャッジ日時 2024-11-29 20:23:10
合計ジャッジ時間 34,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,000 KB
testcase_01 WA -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 29 ms
15,872 KB
testcase_05 WA -
testcase_06 AC 29 ms
16,000 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 WA -
testcase_10 AC 29 ms
15,872 KB
testcase_11 AC 28 ms
20,992 KB
testcase_12 AC 28 ms
15,872 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 29 ms
21,120 KB
testcase_16 TLE -
testcase_17 AC 30 ms
21,120 KB
testcase_18 TLE -
testcase_19 AC 29 ms
21,248 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 30 ms
10,496 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 TLE -
testcase_25 AC 29 ms
21,120 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) + 1, 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