結果
問題 |
No.2827 Enter User Name to Play
|
ユーザー |
![]() |
提出日時 | 2025-04-17 18:49:53 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 257 bytes |
コンパイル時間 | 913 ms |
コンパイル使用メモリ | 79,224 KB |
実行使用メモリ | 7,844 KB |
最終ジャッジ日時 | 2025-04-17 18:49:55 |
合計ジャッジ時間 | 1,695 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
#include<iostream> #include<string.h> using namespace std; int main(){ string s; int n; cin>>n; cin>>s; string output=""; int p[n]; for(int i=0;i<n;i++){ cin>>p[i]; } int x; for(int g=0;g<n;g++){ x=p[g]; cout<<s[x-1]; } }