結果
| 問題 | No.8043 yukicoderへようこそ! |
| コンテスト | |
| ユーザー |
xuzijian629
|
| 提出日時 | 2019-04-01 22:33:16 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,158 bytes |
| 記録 | |
| コンパイル時間 | 1,797 ms |
| コンパイル使用メモリ | 197,536 KB |
| 最終ジャッジ日時 | 2025-01-07 01:09:09 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 WA * 4 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
void solve1() {
cout << "Hello World!" << endl;
}
void solve2(stringstream& ss2, stringstream& ss3) {
random_device rnd;
if (rnd() & 1) {
int n;
ss3 >> n;
for (int i = 1; i <= n; i++) {
if (i % 3 == 0 && i % 5 == 0) {
cout << "FizzBuzz" << endl;
} else if (i % 3 == 0) {
cout << "Fizz" << endl;
} else if (i % 5 == 0) {
cout << "Buzz" << endl;
} else {
cout << i << endl;
}
}
} else {
int n;
ss2 >> n;
cout << n * (n + 1) / 2 << endl;
}
}
int main() {
string input = "";
stringstream ss2, ss3, ss4, ss5, ss6;
char c;
int newlinecnt = 0;
while ((c = getchar()) != EOF) {
input += c;
if (c == '\n') newlinecnt++;
ss2 << c;
ss3 << c;
ss4 << c;
ss5 << c;
ss6 << c;
}
cerr << newlinecnt << endl;
if (newlinecnt == 1 && input.size() > 10) {
solve1();
} else if (input.size() < 4) {
solve2(ss2, ss3);
}
}
xuzijian629