Submission #161793


Source Code Expand

//include----------------------------------------------------------------------------------------------------------------------
#include <bits/stdc++.h>

//using namespace--------------------------------------------------------------------------------------------------------------
using namespace std;

//define-----------------------------------------------------------------------------------------------------------------------
#define rep(i, n) for(int i = 0; i < n; i++)
#define FOR(i, s, n) for(int i = s; i < n; i++)
#define per(i, n) for(int i = n; i >= 0; i--)
#define ROF(i, s, n) for(int i = s; i >= n; i--)
#define FORIT(i, A) for (auto i : A)
#define PRINT(x) cout << (x) << endl
#define ALL(a)  (a).begin(),(a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define MP make_pair
#define FOREACH(i, n) for (__typeof((n).begin()) i = (n).begin(); i != (n).end(); ++i)
#define SZ(a) int((a).size())
#define EACH(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i)
#define EXIST(s,e) ((s).find(e)!=(s).end())
#define SORT(c) sort((c).begin(),(c).end())
#define INF 1 << 25
#define CLR(a) memset((a), 0 ,sizeof(a))
#define dump(x)  cerr << #x << " = " << (x) << endl;
#define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl;
#define sq(n) (n) * (n)

//typedef----------------------------------------------------------------------------------------------------------------------
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef long long LL;
typedef unsigned int uint;
typedef unsigned long long ull;

//const------------------------------------------------------------------------------------------------------------------------
const double EPS = 1e-10;
const double PI = acos( -1.0 );

//global-----------------------------------------------------------------------------------------------------------------------

//function---------------------------------------------------------------------------------------------------------------------
int main() {
	int a;
	scanf( "%d", &a );
	printf( "%d\n", a - 1);
	return 0;
}

Submission Info

Submission Time
Task A - 植木算
User stone725
Language C++ (G++ 4.6.4)
Score 100
Code Size 2219 Byte
Status AC
Exec Time 22 ms
Memory 928 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:47:19: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 17
Set Name Test Cases
Sample subtask0_sample01.txt, subtask0_sample02.txt, subtask0_sample03.txt
All subtask0_sample01.txt, subtask0_sample02.txt, subtask0_sample03.txt, subtask1_01.txt, subtask1_02.txt, subtask1_03.txt, subtask1_04.txt, subtask1_05.txt, subtask1_06.txt, subtask1_07.txt, subtask1_08.txt, subtask1_09.txt, subtask1_10.txt, subtask1_11.txt, subtask1_12.txt, subtask1_13.txt, subtask1_14.txt
Case Name Status Exec Time Memory
subtask0_sample01.txt AC 20 ms 792 KB
subtask0_sample02.txt AC 21 ms 924 KB
subtask0_sample03.txt AC 21 ms 700 KB
subtask1_01.txt AC 21 ms 796 KB
subtask1_02.txt AC 22 ms 928 KB
subtask1_03.txt AC 22 ms 736 KB
subtask1_04.txt AC 21 ms 796 KB
subtask1_05.txt AC 21 ms 800 KB
subtask1_06.txt AC 21 ms 920 KB
subtask1_07.txt AC 21 ms 796 KB
subtask1_08.txt AC 21 ms 796 KB
subtask1_09.txt AC 21 ms 800 KB
subtask1_10.txt AC 21 ms 800 KB
subtask1_11.txt AC 21 ms 920 KB
subtask1_12.txt AC 21 ms 800 KB
subtask1_13.txt AC 21 ms 796 KB
subtask1_14.txt AC 21 ms 928 KB