結果

問題 No.634 硬貨の枚数1
ユーザー 👑 KazunKazun
提出日時 2021-04-14 02:30:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 62,044 KB
最終ジャッジ日時 2024-06-30 03:49:16
合計ジャッジ時間 5,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,832 KB
testcase_01 AC 35 ms
53,456 KB
testcase_02 AC 32 ms
53,140 KB
testcase_03 AC 36 ms
57,664 KB
testcase_04 AC 39 ms
58,296 KB
testcase_05 AC 37 ms
53,004 KB
testcase_06 AC 36 ms
58,116 KB
testcase_07 AC 34 ms
58,000 KB
testcase_08 AC 33 ms
58,160 KB
testcase_09 AC 30 ms
52,660 KB
testcase_10 AC 33 ms
57,924 KB
testcase_11 AC 37 ms
57,992 KB
testcase_12 AC 33 ms
57,800 KB
testcase_13 AC 33 ms
57,920 KB
testcase_14 AC 39 ms
60,696 KB
testcase_15 AC 54 ms
60,284 KB
testcase_16 AC 46 ms
60,888 KB
testcase_17 AC 47 ms
60,664 KB
testcase_18 AC 45 ms
60,884 KB
testcase_19 AC 40 ms
60,256 KB
testcase_20 AC 44 ms
60,004 KB
testcase_21 AC 60 ms
60,656 KB
testcase_22 AC 58 ms
60,388 KB
testcase_23 AC 48 ms
60,232 KB
testcase_24 AC 35 ms
58,848 KB
testcase_25 AC 34 ms
58,656 KB
testcase_26 AC 36 ms
57,832 KB
testcase_27 AC 37 ms
57,728 KB
testcase_28 AC 35 ms
57,536 KB
testcase_29 AC 34 ms
57,528 KB
testcase_30 AC 34 ms
58,772 KB
testcase_31 AC 33 ms
57,916 KB
testcase_32 AC 34 ms
58,280 KB
testcase_33 AC 34 ms
58,720 KB
testcase_34 AC 39 ms
60,532 KB
testcase_35 AC 43 ms
61,500 KB
testcase_36 AC 50 ms
60,464 KB
testcase_37 AC 46 ms
61,364 KB
testcase_38 AC 40 ms
60,636 KB
testcase_39 AC 54 ms
60,584 KB
testcase_40 AC 49 ms
61,184 KB
testcase_41 AC 49 ms
60,516 KB
testcase_42 AC 62 ms
60,784 KB
testcase_43 AC 50 ms
60,312 KB
testcase_44 AC 35 ms
52,324 KB
testcase_45 AC 39 ms
59,096 KB
testcase_46 AC 44 ms
59,984 KB
testcase_47 AC 55 ms
61,432 KB
testcase_48 AC 36 ms
52,408 KB
testcase_49 AC 42 ms
59,872 KB
testcase_50 AC 66 ms
61,124 KB
testcase_51 AC 41 ms
59,888 KB
testcase_52 AC 34 ms
53,036 KB
testcase_53 AC 35 ms
52,612 KB
testcase_54 AC 35 ms
52,004 KB
testcase_55 AC 62 ms
61,300 KB
testcase_56 AC 63 ms
60,832 KB
testcase_57 AC 63 ms
61,956 KB
testcase_58 AC 61 ms
60,320 KB
testcase_59 AC 61 ms
61,620 KB
testcase_60 AC 62 ms
60,552 KB
testcase_61 AC 63 ms
60,756 KB
testcase_62 AC 62 ms
61,760 KB
testcase_63 AC 63 ms
60,992 KB
testcase_64 AC 61 ms
61,508 KB
testcase_65 AC 60 ms
61,012 KB
testcase_66 AC 61 ms
60,988 KB
testcase_67 AC 60 ms
61,756 KB
testcase_68 AC 57 ms
60,760 KB
testcase_69 AC 58 ms
60,936 KB
testcase_70 AC 57 ms
60,640 KB
testcase_71 AC 58 ms
62,044 KB
testcase_72 AC 57 ms
60,652 KB
testcase_73 AC 56 ms
60,516 KB
testcase_74 AC 57 ms
60,680 KB
testcase_75 AC 56 ms
60,936 KB
testcase_76 AC 35 ms
58,504 KB
testcase_77 AC 34 ms
58,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

X=[]
k=1
while True:
    y=k*(k+1)//2
    if y>N:
        break
    k+=1
    X.append(y)

if N in X:
    print(1)
    exit()

L=len(X)
for i in range(L):
    for j in range(i,L):
        if X[i]+X[j]==N:
            print(2)
            exit()

print(3)
0