結果
問題 |
No.2827 Enter User Name to Play
|
ユーザー |
![]() |
提出日時 | 2025-04-17 18:02:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 411 bytes |
コンパイル時間 | 657 ms |
コンパイル使用メモリ | 62,324 KB |
実行使用メモリ | 7,848 KB |
最終ジャッジ日時 | 2025-04-17 18:02:30 |
合計ジャッジ時間 | 1,818 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 22 |
ソースコード
#include<iostream> #include<string> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int size; cin >> size; int arr[16]; string name1; cin >> name1; for(int i=0; i< size; i++){ cin>> arr[i]; } string s = ""; for(int i = 0; i< size; i++){ int temp = arr[i]; s[i] = name1[temp-1]; } cout << s; return 0; }