結果

問題 No.1229 ラグビーの得点パターン
ユーザー yukuyonyukuyon
提出日時 2020-09-19 20:37:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 60,688 KB
最終ジャッジ日時 2024-06-23 18:17:07
合計ジャッジ時間 2,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,192 KB
testcase_01 AC 44 ms
59,624 KB
testcase_02 AC 41 ms
59,680 KB
testcase_03 AC 41 ms
59,556 KB
testcase_04 AC 40 ms
59,364 KB
testcase_05 AC 40 ms
59,444 KB
testcase_06 AC 41 ms
59,300 KB
testcase_07 AC 41 ms
59,924 KB
testcase_08 AC 41 ms
60,060 KB
testcase_09 AC 41 ms
58,880 KB
testcase_10 AC 45 ms
60,688 KB
testcase_11 AC 41 ms
59,304 KB
testcase_12 AC 41 ms
59,672 KB
testcase_13 AC 41 ms
59,624 KB
testcase_14 AC 40 ms
59,484 KB
testcase_15 AC 40 ms
60,012 KB
testcase_16 AC 40 ms
59,676 KB
testcase_17 AC 41 ms
59,356 KB
testcase_18 AC 41 ms
59,272 KB
testcase_19 AC 40 ms
59,380 KB
testcase_20 AC 40 ms
59,508 KB
testcase_21 AC 40 ms
59,748 KB
testcase_22 AC 40 ms
60,232 KB
testcase_23 AC 40 ms
60,060 KB
testcase_24 AC 40 ms
58,824 KB
testcase_25 AC 40 ms
59,624 KB
testcase_26 AC 40 ms
58,932 KB
testcase_27 AC 42 ms
59,172 KB
testcase_28 AC 41 ms
59,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=0
for t in range(21):
    for g in range(t+1):
        for p in range(35):
            if t*5+g*2+p*3==n:
                ans+=1
print(ans)
0