提交时间:2023-09-09 10:45:54

运行 ID: 101568

#include <iostream> #include <cstdio> using namespace std ; int a [21] ; int main ( ) { int t ; cin >> t ; t -= 16 ; if ( t == 0 ) { cout << 1 << endl ; return 0 ; } int temp = t / 5 ; int s = temp / 2 + 1 ; cout << s << endl ; return 0 ; }