Skip to content

Commit c2358fb

Browse files
committed
atcoder/abc009A
1 parent 94a196c commit c2358fb

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

atcoder/abc009/A/main.cpp

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#include <bits/stdc++.h>
2+
3+
using namespace std;
4+
using ll = int64_t;
5+
using ff = long double;
6+
7+
int main() {
8+
ios_base::sync_with_stdio(false);
9+
cin.tie(0); cout.tie(0);
10+
11+
int N;
12+
cin >> N;
13+
cout << (N + 1) / 2 << endl;
14+
15+
return 0;
16+
}

0 commit comments

Comments
 (0)