Submission #154670


Source Code Expand

#include <iostream>
#include <cstdio>
#include <string>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <cmath>
#include <cctype>
#include <sstream>
#include <algorithm>
using namespace std;
#define all(c) (c).begin(), (c).end()
#define rep(i,n) for(int i=0; i<(int)(n); i++)
#define iter(c) __typeof((c).begin())
#define tr(it,c) for(iter(c) it=(c).begin(); it!=(c).end(); it++)
#define pb(a) push_back(a)
#define mp(a, b) make_pair(a, b)
#define pr(a) cout << (a) << endl
typedef long long ll;
typedef pair<int,int> P;
const int MAX=1000000000;
int dx[4]={-1,0,1,0},dy[4]={0,-1,0,1};

int main() {
  int n;
  cin >> n;
  if(n%3==0) pr("YES");
  else pr("NO");
  return 0;
}

Submission Info

Submission Time
Task A - 世界のFizzBuzz
User s1200008
Language C++ (G++ 4.6.4)
Score 100
Code Size 733 Byte
Status AC
Exec Time 21 ms
Memory 804 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 9
Set Name Test Cases
All test_1.txt, test_2.txt, test_3.txt, test_4.txt, test_5.txt, test_6.txt, test_7.txt, test_8.txt, test_9.txt
Case Name Status Exec Time Memory
sample_01.txt AC 21 ms 800 KB
sample_02.txt AC 21 ms 800 KB
sample_03.txt AC 21 ms 804 KB
test_1.txt AC 20 ms 804 KB
test_2.txt AC 20 ms 804 KB
test_3.txt AC 20 ms 804 KB
test_4.txt AC 20 ms 804 KB
test_5.txt AC 20 ms 800 KB
test_6.txt AC 21 ms 804 KB
test_7.txt AC 20 ms 804 KB
test_8.txt AC 20 ms 804 KB
test_9.txt AC 20 ms 748 KB