結果
| 問題 |
No.2049 POP
|
| コンテスト | |
| ユーザー |
_yurimoir
|
| 提出日時 | 2022-10-18 09:49:37 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 183 bytes |
| コンパイル時間 | 2,984 ms |
| コンパイル使用メモリ | 242,672 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 19:04:57 |
| 合計ジャッジ時間 | 3,060 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
string s;
cin>>n>>s;
for(int i=1;i<n-1;i++){
cout<<s[i];
}
cout<<endl;
return 0;
}
_yurimoir