結果

問題 No.1229 ラグビーの得点パターン
ユーザー marroncastlemarroncastle
提出日時 2020-09-18 21:31:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 53,912 KB
最終ジャッジ日時 2024-06-22 09:00:34
合計ジャッジ時間 1,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = 0
N = int(input())
for i in range(N+1):
  score1 = i*5
  if score1>N:
    break
  for j in range(i+1):
    score2 = score1 + j*2
    if score2<=N and (score2-N)%3==0:
      ans += 1
print(ans)
      

0