結果
| 問題 | No.2049 POP |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-10-11 00:26:01 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 259 bytes |
| 記録 | |
| コンパイル時間 | 2,202 ms |
| コンパイル使用メモリ | 192,336 KB |
| 最終ジャッジ日時 | 2025-02-08 01:18:33 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 10 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define fi first
#define se second
#define all(a) a.begin(),a.end()
int main(){
string s;
cin >> s;
int n=s.size();
for(int i=1; i<n-1; ++i) cout << s[i];
cout << "\n";
return 0;
}