Submission #10426911
Source Code Expand
Copy
#pragma GCC optimize ("Ofast") #include <bits/stdc++.h> #define FOR(i, a, b) for (int i=(a); i<(int)(b); i++) #define FORD(i, a, b) for (int i=a; i>(int)(b); i--) #define PPC(x) __builtin_popcount(x) #define MSB(x) (31 - __builtin_clz(x)) #define pb push_back #define ALL(x) (x).begin(), (x).end() #define ithBit(m, i) ((m) >> (i) & 1) #define ft first #define sd second #ifdef DEBUG #include "debug.h" #else #define dbg(...) 0 #endif using namespace std; const int maxN = 1 << 17; void solve() { int n, a, b, c; scanf ("%d", &n); printf("%d\n", (n+1)/2); } int main() { int t; t = 1;//scanf ("%d", &t); while (t--) solve(); return 0; }
Submission Info
Submission Time | |
---|---|
Task | A - Duplex Printing |
User | bgrm |
Language | C++14 (GCC 5.4.1) |
Score | 100 |
Code Size | 709 Byte |
Status | AC |
Exec Time | 1 ms |
Memory | 256 KB |
Compile Error
./Main.cpp: In function ‘void solve()’: ./Main.cpp:24:18: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] scanf ("%d", &n); ^
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 100 / 100 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | 00-sample-00, 00-sample-01, 00-sample-02 |
All | 00-sample-00, 00-sample-01, 00-sample-02, 01-handmade-00, 01-handmade-01, 01-handmade-02, 01-handmade-03, 01-handmade-04, 01-handmade-05, 01-handmade-06 |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
00-sample-00 | AC | 1 ms | 256 KB |
00-sample-01 | AC | 1 ms | 256 KB |
00-sample-02 | AC | 1 ms | 256 KB |
01-handmade-00 | AC | 1 ms | 256 KB |
01-handmade-01 | AC | 1 ms | 256 KB |
01-handmade-02 | AC | 1 ms | 256 KB |
01-handmade-03 | AC | 1 ms | 256 KB |
01-handmade-04 | AC | 1 ms | 256 KB |
01-handmade-05 | AC | 1 ms | 256 KB |
01-handmade-06 | AC | 1 ms | 256 KB |