結果
| 問題 | No.2827 Enter User Name to Play |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2025-04-24 16:41:47 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 282 bytes |
| コンパイル時間 | 747 ms |
| コンパイル使用メモリ | 63,948 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-04-24 16:41:49 |
| 合計ジャッジ時間 | 1,846 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 22 |
ソースコード
#include<iostream>
#include<vector>
using namespace std;
int main(){
int N;
cin>>N;
string s;
cin>>s;
int arr[N];
for (int i = 0; i < N; i++)
{
cin>>arr[i];
}
for (int i = 0; i <N; i++)
{
cout<<s[arr[i]-1]<<" ";
}
}
vjudge1