結果

問題 No.3043 yukicoderへようこそ!
ユーザー akakimidoriakakimidori
提出日時 2019-04-01 23:07:13
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 29,056 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 08:50:39
合計ジャッジ時間 704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<stdint.h>
#include<inttypes.h>
#include<string.h>
#include<math.h>

typedef int32_t i32;
typedef int64_t i64;

#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define ABS(a) ((a) > (0) ? (a) : -(a))

void run (void) {
  i32 a, b;
  scanf ("%" SCNi32 "%" SCNi32, &a, &b);
  char s[11];
  scanf ("%s", s);
  printf ("%" PRIi32 " %s", a + b, s);
}

int main (void) {
  run ();
  return 0;
}
0