結果
| 問題 | No.597 concat |
| コンテスト | |
| ユーザー |
iwltwm
|
| 提出日時 | 2018-01-03 19:29:15 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 278 bytes |
| 記録 | |
| コンパイル時間 | 195 ms |
| コンパイル使用メモリ | 36,992 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-29 05:14:43 |
| 合計ジャッジ時間 | 1,055 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 11 |
ソースコード
/*
*No.597
*/
#include <stdio.h>
#include <string.h>
int main(void)
{
int N,i;
char a[20];
scanf("%d",&N);
for (i=0;i<N;i++) {
char b[10];
scanf("%s",b);
//printf("%s",b); //͂̊mFɎgB
strcat(a,b);
}
printf("%s\n",a);
return 0;
}
iwltwm