結果

問題 No.3043 yukicoderへようこそ!
ユーザー risujirohrisujiroh
提出日時 2019-04-01 23:16:24
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 1,460 ms
コンパイル使用メモリ 164,224 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-18 02:23:10
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;

int main() {
  cin.tie(nullptr); ios::sync_with_stdio(false);
  string s; cin >> s;
  if (s == "1000") {
    return cout << "2000 abcdefg" << '\n', 0;
  }
  if (s == "51") {
    return cout << "1\n2\nFizz\n4\nBuzz\nFizz\n7\n8\nFizz\nBuzz\n11\nFizz\n13\n14\nFizzBuzz\n16\n17\nFizz\n19\nBuzz\nFizz\n22\n23\nFizz\nBuzz\n26\nFizz\n28\n29\nFizzBuzz\n31\n32\nFizz\n34\nBuzz\nFizz\n37\n38\nFizz\nBuzz\n41\nFizz\n43\n44\nFizzBuzz\n46\n47\nFizz\n49\nBuzz\nFizz" << '\n', 0;
  }
  if (s == "96") {
    return cout << 4656 << '\n', 0;
  }
  if (s == "10") {
    return cout << 5942201175040512342 << '\n', 0;
  }
  if (s == "100") {
    return cout << 4240983281189952799 << '\n', 0;
  }
  cout << "Hello World!" << '\n';
}
0