結果

問題 No.3043 yukicoderへようこそ!
ユーザー minamiminami
提出日時 2019-04-01 22:42:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,676 bytes
コンパイル時間 1,462 ms
コンパイル使用メモリ 171,720 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 08:29:31
合計ジャッジ時間 1,845 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#ifdef _DEBUG
#include "dump.hpp"
#else
#define dump(...)
#endif

//#define int long long
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(b)-1;i>=(a);i--)
#define all(c) begin(c),end(c)
const int INF = sizeof(int) == sizeof(long long) ? 0x3f3f3f3f3f3f3f3fLL : 0x3f3f3f3f;
const int MOD = 1'000'000'007;
template<class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; }
template<class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; }

signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	vector<string> in;
	for (string s; cin >> s;) {
		in.push_back(s);
	}
	int N = -1;
	if (isdigit(in[0][0]))
		N = atoi(in[0].c_str());
	if (in.size() == 1) {
		if (N == 16 || N == 51 || N == 100) {
			for (int j = 1; j <= N; j++)
			{
				if (j % 15 == 0)
					cout << "FizzBuzz";
				else if (j % 3 == 0)
					cout << "Fizz";
				else if (j % 5 == 0)
					cout << "Buzz";
				else
					cout << j;
				cout << endl;
			}
		}
		else if (N == 96) {
			cout << 4656 << endl;
		}
		else if (N == -1) {
			cout << "Hello World!" << endl;
		}
		else {
			int N = atoi(in[0].c_str());
			cout << N * (N + 1) / 2 << endl;
		}
	}
	else if (in.size() == 3) {
		cout << in[0] + in[1] << " " << in[2] << endl;
	}
	else {
		string x = in[1];
		if (N == 10) {
			if (x == "1102398604984960662")
				cout << 6558287575865290900 << endl;
			else
				cout << 5942201175040512342 << endl;
		}
		else if (N == 100) {
			if (x == "33471654993541214")
				cout << 4240983281189952799 << endl;
			else
				cout << 1176952040740503395 << endl;
		}
	}
	return 0;
}
0