結果

問題 No.2049 POP
ユーザー nao109
提出日時 2022-10-11 00:26:01
言語 C++17
(gcc 13.3.0 + boost 1.87.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
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0