結果
問題 | No.597 concat |
ユーザー | ya-ma-sa-ki |
提出日時 | 2018-02-03 01:25:23 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 259 bytes |
コンパイル時間 | 293 ms |
コンパイル使用メモリ | 28,160 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-31 08:28:18 |
合計ジャッジ時間 | 785 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#include <stdio.h> #include <string.h> int main(void){ int N = 0; int i = 0; char S[10][21] = {""}; char hoge[210] = ""; scanf("%d", &N); for(i=0;i<N;i++){ scanf("%s",S[i]); strcat(hoge,S[i]); } printf("%s\n",hoge); return 0; }