結果
問題 |
No.8043 yukicoderへようこそ!
|
ユーザー |
![]() |
提出日時 | 2019-04-01 23:07:13 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 467 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 28,672 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 04:08:37 |
合計ジャッジ時間 | 492 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 5 |
ソースコード
#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; }