結果

問題 No.1229 ラグビーの得点パターン
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-09-18 21:26:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 61,336 KB
最終ジャッジ日時 2024-06-22 08:50:33
合計ジャッジ時間 2,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,336 KB
testcase_01 AC 43 ms
59,912 KB
testcase_02 AC 43 ms
61,096 KB
testcase_03 AC 42 ms
60,564 KB
testcase_04 AC 41 ms
59,852 KB
testcase_05 AC 43 ms
60,080 KB
testcase_06 AC 43 ms
60,372 KB
testcase_07 AC 41 ms
60,324 KB
testcase_08 AC 44 ms
60,516 KB
testcase_09 AC 43 ms
60,260 KB
testcase_10 AC 42 ms
59,544 KB
testcase_11 AC 40 ms
59,860 KB
testcase_12 AC 39 ms
59,488 KB
testcase_13 AC 40 ms
60,884 KB
testcase_14 AC 42 ms
60,772 KB
testcase_15 AC 41 ms
60,868 KB
testcase_16 AC 42 ms
60,648 KB
testcase_17 AC 40 ms
60,004 KB
testcase_18 AC 40 ms
60,008 KB
testcase_19 AC 39 ms
60,924 KB
testcase_20 AC 39 ms
60,120 KB
testcase_21 AC 40 ms
61,332 KB
testcase_22 AC 40 ms
60,880 KB
testcase_23 AC 40 ms
60,880 KB
testcase_24 AC 40 ms
61,192 KB
testcase_25 AC 42 ms
60,212 KB
testcase_26 AC 41 ms
60,676 KB
testcase_27 AC 39 ms
60,116 KB
testcase_28 AC 41 ms
59,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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