結果

問題 No.597 concat
ユーザー cnyanko
提出日時 2017-11-25 10:48:00
言語 C
(gcc 13.3.0)
結果
RE  
実行時間 -
コード長 195 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 28,672 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-27 09:54:54
合計ジャッジ時間 3,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

int main(void){
    int i,n,s;
    char *inputs[s];
    n=getchar();
    s=n+1;
    for(i=0;i<n;i++){
        scanf("%s",inputs[i]);
    }
    puts(inputs[0]);

    return 0;
}
0