結果
問題 | No.597 concat |
ユーザー |
![]() |
提出日時 | 2020-03-09 00:27:44 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 186 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 27,520 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 20:19:54 |
合計ジャッジ時間 | 862 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#include<stdio.h>#include<string.h>#include<stdlib.h>int main(void){int n;char s[30];scanf("%d",&n);for(int i=0;i<n;i++){scanf("%s",s);printf("%s",s);}printf("\n");}