結果

問題 No.2827 Enter User Name to Play
ユーザー vjudge1
提出日時 2025-04-19 02:23:34
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 79,180 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-04-19 02:23:37
合計ジャッジ時間 1,754 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
int main()
{
    int n;
    cin>>n;
    string name;
    cin>>name;
    int arr[n];
    for(int i=0;i<n;i++)
    {
        cin>>arr[i];
    }
    for(int j=0;j<n;j++)
    {
        int num=arr[j];
        // cout<<num;
        cout<<name[num-1]<<endl;
    }
} 
0