結果

問題 No.1229 ラグビーの得点パターン
ユーザー gorugo30gorugo30
提出日時 2021-02-23 15:40:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 62,120 KB
最終ジャッジ日時 2024-09-22 11:19:50
合計ジャッジ時間 2,796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,124 KB
testcase_01 AC 43 ms
60,192 KB
testcase_02 AC 44 ms
60,304 KB
testcase_03 AC 44 ms
59,884 KB
testcase_04 AC 43 ms
60,224 KB
testcase_05 AC 44 ms
61,224 KB
testcase_06 AC 43 ms
59,896 KB
testcase_07 AC 43 ms
60,160 KB
testcase_08 AC 44 ms
61,588 KB
testcase_09 AC 43 ms
59,936 KB
testcase_10 AC 43 ms
59,736 KB
testcase_11 AC 44 ms
60,692 KB
testcase_12 AC 44 ms
60,652 KB
testcase_13 AC 44 ms
60,900 KB
testcase_14 AC 43 ms
60,288 KB
testcase_15 AC 43 ms
60,364 KB
testcase_16 AC 43 ms
60,516 KB
testcase_17 AC 44 ms
60,064 KB
testcase_18 AC 43 ms
61,340 KB
testcase_19 AC 44 ms
60,600 KB
testcase_20 AC 43 ms
61,572 KB
testcase_21 AC 43 ms
61,236 KB
testcase_22 AC 43 ms
59,996 KB
testcase_23 AC 44 ms
60,404 KB
testcase_24 AC 44 ms
62,120 KB
testcase_25 AC 43 ms
61,136 KB
testcase_26 AC 43 ms
60,308 KB
testcase_27 AC 43 ms
60,772 KB
testcase_28 AC 45 ms
61,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = 0
N = int(input())
for t in range(21):
    for g in range(51):
        for pg in range(34):
            if g > t:
                continue
            if t * 5 + 2 * g + 3 * pg == N:
                ans += 1
print(ans)
0