Recent Posts
Notice
No Rules Rules
조별과제를 하려는데 조장이 사라졌다 (feat. 백준, 15727번) 본문
728x90
반응형
조별과제를 하려는데 조장이 사라졌다
https://www.acmicpc.net/problem/15727
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, ans = 0;
cin >> N;
if(N % 5 != 0)
++ans;
ans += N / 5;
cout << ans;
return 0;
}
// *&)*@*
반응형
단순한 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
농구 경기 (feat. 백준, 1159번) (0) | 2023.03.15 |
---|---|
모든 순열 (feat. 백준, 10974번) (0) | 2023.03.15 |
국영수 (feat. 백준, 10825번) (0) | 2023.03.15 |
윷놀이 (feat. 백준, 2490번) (0) | 2023.03.14 |
비밀번호 찾기 (feat. 백준, 17219번) (0) | 2023.03.14 |
Comments