Submission #615695


Source Code Expand

#include <bits/stdc++.h>
#define all(x) begin(x),end(x)
#define rall(x) (x).rbegin(),(x).rend()
#define REP(i,b,n) for(int i=(int)(b);i<(int)(n);++i)
#define rep(i,n) REP(i,0,n)
#define repsz(i,v) rep(i,(v).size())
#define aur auto&
#define bit(n) (1LL<<(n))
#define eb emplace_back
#define mt make_tuple
#define fst first
#define snd second
using namespace std;
typedef long long ll;
//#define int long long
template<class C>int size(const C &c){ return c.size(); }
template<class T>bool chmin(T&a,const T&b){if(a<=b)return false;a=b;return true;}
template<class T>bool chmax(T&a,const T&b){if(a>=b)return false;a=b;return true;}

bool solve(){
    int n; cin >> n;
    cout << n/25 << endl;
    return true;
}
signed main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    cout << std::fixed << std::setprecision(10);
    solve();
    return 0;
}
// vim:set foldmethod=marker commentstring=//%s:

Submission Info

Submission Time
Task A - ニコニコ数
User MiSawa
Language C++11 (GCC 4.9.2)
Score 60
Code Size 946 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 27 ms 920 KB
sample_02.txt AC 27 ms 800 KB
test_01.txt AC 27 ms 920 KB
test_02.txt AC 26 ms 924 KB
test_03.txt AC 26 ms 920 KB
test_04.txt AC 26 ms 796 KB
test_05.txt AC 26 ms 788 KB
test_06.txt AC 25 ms 920 KB
test_07.txt AC 27 ms 748 KB
test_08.txt AC 27 ms 800 KB
test_09.txt AC 26 ms 800 KB
test_10.txt AC 25 ms 916 KB
test_11.txt AC 27 ms 924 KB
test_12.txt AC 27 ms 920 KB
test_13.txt AC 28 ms 796 KB
test_14.txt AC 28 ms 920 KB
test_15.txt AC 27 ms 920 KB