結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー alpha_virginisalpha_virginis
提出日時 2017-03-12 14:30:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,386 bytes
コンパイル時間 1,410 ms
コンパイル使用メモリ 167,588 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-30 00:25:58
合計ジャッジ時間 1,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

#ifndef LOCAL_
#define fprintf if( false ) fprintf
#endif // LOCAL_
#define dumpi(x1) fprintf(stderr, "#%s.%d (%s) = (%d)\n", __func__, __LINE__, #x1, x1);
#define dumpii(x1, x2) fprintf(stderr, "#%s.%d (%s, %s) = (%d, %d)\n", __func__, __LINE__, #x1, #x2, x1, x2);
#define dumpiii(x1, x2, x3) fprintf(stderr, "#%s.%d (%s, %s, %s) = (%d, %d, %d)\n", __func__, __LINE__, #x1, #x2, #x3, x1, x2, x3);
#define dumpl(x1) fprintf(stderr, "#%s.%d (%s) = (%ld)\n", __func__, __LINE__, #x1, x1);
#define dumpll(x1, x2) fprintf(stderr, "#%s.%d (%s, %s) = (%ld, %ld)\n", __func__, __LINE__, #x1, #x2, x1, x2);
#define dumpd(x1) fprintf(stderr, "#%s.%d (%s) = (%lf)\n", __func__, __LINE__, #x1, x1);
#define dumpdd(x1, x2) fprintf(stderr, "#%s.%d (%s, %s) = (%lf, %lf)\n", __func__, __LINE__, #x1, #x2, x1, x2);

struct S002 {
  long l() {
    long x;
    if( scanf("%ld", &x) <= 0 ) exit(0);
    return x;
  }
  double f() {
    double x;
    if( scanf("%lf", &x) <= 0 ) exit(0);
    return x;
  }
  std::string s() {
    std::string str;
    if( not (std::cin >> str) ) exit(0);
    return str;
  }
};

struct Solver {
  void solve() {
    S002 r;
    long a = r.l();
    long b = r.l();
    std::string s = r.s();
    printf("%ld %s\n", a + b, s.c_str());
  }  
};

int main() {
  for(;;) {
    std::unique_ptr<Solver> s(new Solver());
    s->solve();
  }
  return 0;
}
0