Submission #615737


Source Code Expand

#include <bits/stdc++.h>
 
#define FOR(i,a,b) for( int i = (a); i < (int)(b); i++ )
#define REP(i,n) FOR(i,0,n)
#define YYS(x,arr) for(auto& x:arr)
#define ALL(x) (x).begin(),(x).end()
#define SORT(x) sort( (x).begin(),(x).end() )
#define REVERSE(x) reverse( (x).begin(),(x).end() )
#define UNIQUE(x) (x).erase( unique( ALL( (x) ) ) , (x).end() )
#define PW(x) (1LL<<(x))
#define pb emplace_back
#define fi first
#define se second

using namespace std;

typedef long double ld;
typedef long long int ll;
typedef pair<int,int> pi;
typedef pair<ll,ll> pl;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<bool> vb;
typedef vector<ld> vd;
typedef vector<pi> vpi;
typedef vector<pl> vpl;
typedef vector<vpl> gr;
typedef vector<vi> mi;
typedef vector<vl> ml;
typedef vector<vd> md;

const int INF = 1e9+10;
const ll INFLL = 1e18+10;
const ld EPS = 1e-8;
const ld EPSLD = 1e-14;
const ll MOD = 1e9+7;

template<class T> T &chmin( T &a , const T &b ){ return a = min(a,b); }
template<class T> T &chmax( T &a , const T &b ){ return a = max(a,b); }

int n;

int main(){

  cin >> n;
  cout << n / 25 << endl;

  return 0;
}

Submission Info

Submission Time
Task A - ニコニコ数
User joisino
Language C++11 (GCC 4.9.2)
Score 60
Code Size 1177 Byte
Status AC
Exec Time 27 ms
Memory 928 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 24 ms 804 KB
sample_02.txt AC 24 ms 808 KB
test_01.txt AC 24 ms 928 KB
test_02.txt AC 25 ms 920 KB
test_03.txt AC 24 ms 800 KB
test_04.txt AC 24 ms 800 KB
test_05.txt AC 24 ms 796 KB
test_06.txt AC 23 ms 796 KB
test_07.txt AC 24 ms 808 KB
test_08.txt AC 27 ms 804 KB
test_09.txt AC 27 ms 800 KB
test_10.txt AC 27 ms 804 KB
test_11.txt AC 25 ms 744 KB
test_12.txt AC 25 ms 792 KB
test_13.txt AC 27 ms 788 KB
test_14.txt AC 25 ms 804 KB
test_15.txt AC 25 ms 740 KB