結果

問題 No.2827 Enter User Name to Play
ユーザー nekotinekoti
提出日時 2024-08-02 23:03:06
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 1,467 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-02 23:03:09
合計ジャッジ時間 1,425 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _DEBUG 0
#if _DEBUG
#endif

#include<stdio.h>
#include<stdbool.h>
#include<string.h>
#include<stdlib.h>
int main(void)
{
  int scan;//scanf警告用
  int ans=0;
  int i, j;
  
  int n;scan=scanf("%d",&n);
  char s[n+1];scan=scanf("%s",s);
  int a;
  for(i=0; i<n; i++)
  {
    scan=scanf("%d",&a);
    printf("%c",s[a-1]);
  }
  return 0;
}
0