結果
問題 | No.597 concat |
ユーザー | Elk |
提出日時 | 2018-06-03 13:36:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 319 bytes |
コンパイル時間 | 135 ms |
コンパイル使用メモリ | 23,040 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 09:20:13 |
合計ジャッジ時間 | 822 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 0 ms
6,944 KB |
testcase_03 | AC | 0 ms
6,948 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 0 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | AC | 0 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:9:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%d\n", &N); | ~~~~~^~~~~~~~~~~~ main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%s ", str[i]); | ~~~~~^~~~~~~~~~~~~~~ main.cpp:14:26: warning: ‘%s’ directive writing up to 209 bytes into a region of size between 1 and 1000 [-Wformat-overflow=] 14 | sprintf(str2, "%s%s", str2, str[i]); | ^~ In file included from /usr/include/stdio.h:894, from main.cpp:1: /usr/include/x86_64-linux-gnu/bits/stdio2.h:38:34: note: ‘__builtin___sprintf_chk’ output between 1 and 1209 bytes into a destination of size 1000 38 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 39 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 40 | __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> int main(){ int i, N; char str[10][21]; char str2[1000]; scanf("%d\n", &N); for(i = 0; i < N; i++){ scanf("%s ", str[i]); } for(i = 0; i < N; i++){ sprintf(str2, "%s%s", str2, str[i]); } printf("%s\n", str2); return 0; }