結果
| 問題 | No.2827 Enter User Name to Play |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2025-04-17 18:18:47 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
OLE
|
| 実行時間 | - |
| コード長 | 204 bytes |
| コンパイル時間 | 1,765 ms |
| コンパイル使用メモリ | 66,680 KB |
| 実行使用メモリ | 11,300 KB |
| 最終ジャッジ日時 | 2025-04-17 18:18:56 |
| 合計ジャッジ時間 | 7,978 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | OLE * 1 -- * 2 |
| other | -- * 22 |
ソースコード
#include<iostream>
using namespace std;
int main(){
int t;
string z;
cin >> t;
cin >> z;
for(int j = 0; j < t; j++){
int i = 0;
while(i<t){
cin >> i ;
if (i<t){
cout << z[i-1];
}
}
}
}
vjudge1