結果

問題 No.1229 ラグビーの得点パターン
ユーザー 👑 KazunKazun
提出日時 2020-09-19 00:50:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 61,608 KB
最終ジャッジ日時 2024-06-22 14:07:13
合計ジャッジ時間 2,704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
60,408 KB
testcase_01 AC 51 ms
61,340 KB
testcase_02 AC 50 ms
60,408 KB
testcase_03 AC 51 ms
61,608 KB
testcase_04 AC 49 ms
60,004 KB
testcase_05 AC 50 ms
60,248 KB
testcase_06 AC 51 ms
60,592 KB
testcase_07 AC 51 ms
61,120 KB
testcase_08 AC 51 ms
60,200 KB
testcase_09 AC 50 ms
60,520 KB
testcase_10 AC 51 ms
61,512 KB
testcase_11 AC 50 ms
60,796 KB
testcase_12 AC 51 ms
60,940 KB
testcase_13 AC 51 ms
60,712 KB
testcase_14 AC 51 ms
61,508 KB
testcase_15 AC 51 ms
60,140 KB
testcase_16 AC 51 ms
61,120 KB
testcase_17 AC 49 ms
60,648 KB
testcase_18 AC 51 ms
61,112 KB
testcase_19 AC 53 ms
61,004 KB
testcase_20 AC 51 ms
60,340 KB
testcase_21 AC 52 ms
60,664 KB
testcase_22 AC 52 ms
60,384 KB
testcase_23 AC 51 ms
60,936 KB
testcase_24 AC 51 ms
60,928 KB
testcase_25 AC 49 ms
61,456 KB
testcase_26 AC 52 ms
61,044 KB
testcase_27 AC 51 ms
61,360 KB
testcase_28 AC 50 ms
60,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

K=0
for x in range(101):
    for y in range(101):
        for z in range(101):
            K+=(5*x+2*y+3*z==N) and (x>=y)
print(K)
0