結果

問題 No.634 硬貨の枚数1
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-17 07:23:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 62,280 KB
最終ジャッジ日時 2024-11-14 04:56:16
合計ジャッジ時間 8,926 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
61,200 KB
testcase_01 AC 40 ms
58,768 KB
testcase_02 AC 41 ms
59,608 KB
testcase_03 AC 42 ms
60,144 KB
testcase_04 AC 101 ms
61,356 KB
testcase_05 AC 43 ms
59,388 KB
testcase_06 AC 43 ms
59,656 KB
testcase_07 AC 45 ms
60,420 KB
testcase_08 AC 102 ms
61,932 KB
testcase_09 AC 43 ms
59,512 KB
testcase_10 AC 43 ms
60,360 KB
testcase_11 AC 101 ms
61,420 KB
testcase_12 AC 42 ms
60,000 KB
testcase_13 AC 99 ms
62,280 KB
testcase_14 AC 100 ms
61,104 KB
testcase_15 AC 99 ms
60,324 KB
testcase_16 AC 99 ms
60,808 KB
testcase_17 AC 99 ms
61,360 KB
testcase_18 AC 100 ms
61,136 KB
testcase_19 AC 47 ms
60,032 KB
testcase_20 AC 51 ms
60,928 KB
testcase_21 AC 98 ms
60,884 KB
testcase_22 AC 99 ms
61,292 KB
testcase_23 AC 99 ms
60,628 KB
testcase_24 AC 99 ms
60,892 KB
testcase_25 AC 99 ms
62,096 KB
testcase_26 AC 99 ms
61,796 KB
testcase_27 AC 100 ms
60,520 KB
testcase_28 AC 100 ms
60,412 KB
testcase_29 AC 101 ms
61,252 KB
testcase_30 AC 100 ms
61,136 KB
testcase_31 AC 100 ms
60,720 KB
testcase_32 AC 101 ms
61,952 KB
testcase_33 AC 99 ms
61,240 KB
testcase_34 AC 100 ms
60,528 KB
testcase_35 AC 101 ms
60,192 KB
testcase_36 AC 100 ms
61,940 KB
testcase_37 AC 99 ms
60,936 KB
testcase_38 AC 99 ms
60,880 KB
testcase_39 AC 100 ms
61,316 KB
testcase_40 AC 100 ms
61,340 KB
testcase_41 AC 99 ms
60,404 KB
testcase_42 AC 100 ms
60,760 KB
testcase_43 AC 100 ms
60,840 KB
testcase_44 AC 41 ms
60,688 KB
testcase_45 AC 100 ms
61,876 KB
testcase_46 AC 51 ms
60,128 KB
testcase_47 AC 63 ms
60,844 KB
testcase_48 AC 39 ms
60,176 KB
testcase_49 AC 42 ms
59,360 KB
testcase_50 AC 102 ms
60,324 KB
testcase_51 AC 98 ms
60,600 KB
testcase_52 AC 41 ms
59,928 KB
testcase_53 AC 99 ms
61,928 KB
testcase_54 AC 99 ms
60,580 KB
testcase_55 AC 99 ms
61,348 KB
testcase_56 AC 100 ms
60,320 KB
testcase_57 AC 99 ms
60,180 KB
testcase_58 AC 100 ms
60,592 KB
testcase_59 AC 100 ms
60,752 KB
testcase_60 AC 99 ms
61,052 KB
testcase_61 AC 99 ms
60,388 KB
testcase_62 AC 99 ms
61,672 KB
testcase_63 AC 99 ms
61,204 KB
testcase_64 AC 98 ms
60,524 KB
testcase_65 AC 99 ms
61,256 KB
testcase_66 AC 98 ms
60,652 KB
testcase_67 AC 98 ms
60,648 KB
testcase_68 AC 99 ms
61,420 KB
testcase_69 AC 99 ms
60,844 KB
testcase_70 AC 98 ms
61,048 KB
testcase_71 AC 98 ms
60,576 KB
testcase_72 AC 99 ms
61,068 KB
testcase_73 AC 99 ms
61,876 KB
testcase_74 AC 99 ms
60,764 KB
testcase_75 AC 100 ms
61,136 KB
testcase_76 AC 99 ms
61,632 KB
testcase_77 AC 39 ms
59,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = set()
for i in range(1, 5000):
    a = i*(i+1)//2
    S.add(a)
if n in S:
    print(1)
    exit()
S = list(S)
for i in range(len(S)):
    for j in range(len(S)):
        if S[i]+S[j] == n:
            print(2)
            exit()
print(3)
0