Submission #4037963


Source Code Expand

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<cmath>
#include<cstdio>
 
using namespace std;
 
#define rep(i,n) for(int i=0;i<n;i++)
#define REP(i,s,n) for(int i=(s);i<(n);i++)
#define repr(i,n) for(int i=n-1;i>=0;i--)
#define REPR(i,s,n) for(int i=(s);i>=(n);i--)
#define pb push_back
#define pf push_front
 
typedef vector<int> vi;
typedef vector<string> vs;
typedef long long ll;
typedef vector<ll> vll;
 
ll gcd(ll x, ll y) {
	ll r;
	while ((r = x % y) != 0) {
		x = y;
		y = r;
	}
	return y;
	}
ll lcm(ll x, ll y) {
	x /= gcd(x, y);
	y /= gcd(x, y);
	return (x*y);
}

int main()
{
	int n;
    cin >> n;
    if(n==3 || n==6 || n==9) cout << "YES\n";
    else cout << "NO\n";
	return 0;
}

Submission Info

Submission Time
Task A - 世界のFizzBuzz
User mitsui321
Language C++14 (GCC 5.4.1)
Score 100
Code Size 771 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 12
Set Name Test Cases
All sample_01.txt, sample_02.txt, sample_03.txt, 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 1 ms 256 KB
sample_02.txt AC 1 ms 256 KB
sample_03.txt AC 1 ms 256 KB
test_1.txt AC 1 ms 256 KB
test_2.txt AC 1 ms 256 KB
test_3.txt AC 1 ms 256 KB
test_4.txt AC 1 ms 256 KB
test_5.txt AC 1 ms 256 KB
test_6.txt AC 1 ms 256 KB
test_7.txt AC 1 ms 256 KB
test_8.txt AC 1 ms 256 KB
test_9.txt AC 1 ms 256 KB