AtCoder Regular Contest 068: C - X: Yet Another Die Game
部内でやったら誤読率$30$%ぐらいでした。
- 好きな面を上にして始めてよい
- 毎回好きな方向に転がしてよい
#!/usr/bin/env python3
x = int(input())
cnt = 0
cnt += x // (6 + 5) * 2
x %= (6 + 5)
if x >= 1:
cnt += 1
x -= 6
if x >= 1:
cnt += 1
x -= 5
assert - 5 <= x <= 0
print(cnt)