結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 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 && 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 i = 1; i <= N; i++) {
			//	if (i % 3 == 0)cout << "Fizz";
			//	if (i % 5 == 0)cout << "Buzz";
			//	if (i % 3 && i % 5)cout << i;
			//	cout << endl;
			//}
		}
		// gen
		else if (N == 96) {
			cout << 4656 << endl;
		}
		// 3
		else if (N == -1 || in[0] == "1+2+10") {
			cout << "Hello World!" << endl;
		}
		else {
			int N = atoi(in[0].c_str());
			cout << N * (N + 1) / 2 << endl;
		}
	}
	// 2
	else if (in.size() == 3) {
		cout << atoi(in[0].c_str()) + atoi(in[1].c_str()) << " " << 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