Submission #615990


Source Code Expand


#include <bits/stdc++.h>

using namespace std;

//conversion
//------------------------------------------
inline int toInt(string s) {int v; istringstream sin(s);sin>>v;return v;}
inline int toLL(string s) {long long v; istringstream sin(s);sin>>v;return v;}
template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();}

//math
//-------------------------------------------
template<class T> inline T sqr(T x) {return x*x;}

//typedef
//------------------------------------------
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<long,long> PLL;
//container util
//------------------------------------------
#define ALL(a)  (a).begin(),(a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define PF push_front
#define MP make_pair



#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())

//repetition
//------------------------------------------
#define FOR(i,a,b) for(long i=(a);i<(b);++i)
#define REP(i,n)  FOR(i,0,n)

//constant
//--------------------------------------------

//clear memory
#define CLR(a) memset((a), 0 ,sizeof(a))
#define INF 1000000003


int main(){
	
	LL N;
	cin>>N;
	cout<<N/25LL<<endl;
	return 0;
	
}

Submission Info

Submission Time
Task A - ニコニコ数
User blue0620
Language C++ (GCC 4.9.2)
Score 60
Code Size 1475 Byte
Status AC
Exec Time 28 ms
Memory 924 KB

Judge Result

Set Name Sample Subtask1
Score / Max Score 0 / 0 60 / 60
Status
AC × 2
AC × 17
Set Name Test Cases
Sample sample_01.txt, sample_02.txt
Subtask1 sample_01.txt, sample_02.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt
Case Name Status Exec Time Memory
sample_01.txt AC 26 ms 804 KB
sample_02.txt AC 24 ms 804 KB
test_01.txt AC 24 ms 924 KB
test_02.txt AC 28 ms 804 KB
test_03.txt AC 27 ms 920 KB
test_04.txt AC 27 ms 796 KB
test_05.txt AC 27 ms 920 KB
test_06.txt AC 27 ms 792 KB
test_07.txt AC 26 ms 924 KB
test_08.txt AC 26 ms 924 KB
test_09.txt AC 26 ms 840 KB
test_10.txt AC 26 ms 808 KB
test_11.txt AC 24 ms 796 KB
test_12.txt AC 24 ms 800 KB
test_13.txt AC 25 ms 924 KB
test_14.txt AC 23 ms 800 KB
test_15.txt AC 24 ms 800 KB