結果

問題 No.3043 yukicoderへようこそ!
ユーザー risujirohrisujiroh
提出日時 2019-04-01 22:27:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 663 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 165,892 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 08:19:12
合計ジャッジ時間 1,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 == "Welcome to yukicoder!" or s == "1+2+10" or s == "Let's enjoy") {
    return cout << "Hello World!" << '\n', 0;
  }
  if (s == "96") {
    return cout << 4656 << '\n', 0;
  }
  if (s == "10") {
    lint a; cin >> a;
    if (a == 74277514688006405) {
      return cout << 5942201175040512342 << '\n', 0;
    }
    if (a == 2206785076388444) {
      return cout << 1176952040740503395 << '\n', 0;
    }
  }
}
0