結果
| 問題 | No.2827 Enter User Name to Play |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2025-04-24 16:38:57 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 322 bytes |
| 記録 | |
| コンパイル時間 | 349 ms |
| コンパイル使用メモリ | 79,248 KB |
| 実行使用メモリ | 9,416 KB |
| 最終ジャッジ日時 | 2026-07-10 05:27:23 |
| 合計ジャッジ時間 | 1,973 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 22 |
ソースコード
#include<iostream>
#include<vector>
using namespace std;
int main(){
int N;
cin>>N;
string s;
cin>>s;
vector<int> arr;
for (int i = 0; i < N; i++)
{
int n;
cin>>n;
arr.push_back(n);
}
for (int i = 0; i <N; i++)
{
cout<<s[arr[i]];
}
}
vjudge1