結果

問題 No.1229 ラグビーの得点パターン
ユーザー tanon710tanon710
提出日時 2020-09-18 23:30:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 62,240 KB
最終ジャッジ日時 2024-06-22 10:26:32
合計ジャッジ時間 2,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,600 KB
testcase_01 AC 44 ms
60,144 KB
testcase_02 AC 43 ms
59,928 KB
testcase_03 AC 43 ms
60,868 KB
testcase_04 AC 42 ms
59,376 KB
testcase_05 AC 43 ms
59,432 KB
testcase_06 AC 42 ms
60,212 KB
testcase_07 AC 41 ms
60,500 KB
testcase_08 AC 42 ms
60,468 KB
testcase_09 AC 42 ms
60,104 KB
testcase_10 AC 43 ms
60,408 KB
testcase_11 AC 44 ms
60,992 KB
testcase_12 AC 44 ms
60,544 KB
testcase_13 AC 43 ms
60,336 KB
testcase_14 AC 42 ms
60,796 KB
testcase_15 AC 43 ms
59,656 KB
testcase_16 AC 43 ms
61,836 KB
testcase_17 AC 43 ms
62,240 KB
testcase_18 AC 43 ms
60,496 KB
testcase_19 AC 42 ms
59,568 KB
testcase_20 AC 42 ms
61,176 KB
testcase_21 AC 45 ms
59,808 KB
testcase_22 AC 43 ms
59,868 KB
testcase_23 AC 45 ms
61,436 KB
testcase_24 AC 45 ms
61,548 KB
testcase_25 AC 44 ms
60,956 KB
testcase_26 AC 43 ms
61,176 KB
testcase_27 AC 43 ms
60,824 KB
testcase_28 AC 44 ms
61,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=0
for i in range(100+1):
    for j in range(100+1):
        for k in range(100+1):
            if i*5+j*2+k*3==n and i>=j:
                ans+=1
print(ans)
0