結果
問題 |
No.2049 POP
|
ユーザー |
|
提出日時 | 2022-08-22 02:02:00 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 171 bytes |
コンパイル時間 | 683 ms |
コンパイル使用メモリ | 78,408 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 06:27:45 |
合計ジャッジ時間 | 1,223 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 10 |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { int N; string S; cin >> N >> S; cout << S.substr(1,N-2) << endl; return 0; }