結果

問題 No.634 硬貨の枚数1
ユーザー しらっ亭
提出日時 2017-05-17 17:12:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-25 18:35:43
合計ジャッジ時間 4,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 75
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n):
    T = []
    i = 1
    exists = set()
    while 1:
        t = i * (i + 1) // 2
        if t < n:
            T.append(t)
            exists.add(t)
        elif t == n:
            return 1
        else:
            break
        i += 1

    for t in T:
        if n - t in exists:
            return 2

    return 3

if __name__ == '__main__':
    n = int(input())
    print(solve(n))
0