結果

問題 No.1763 Many Balls
ユーザー PCTprobability
提出日時 2021-11-09 09:38:50
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 162 bytes
コンパイル時間 1,789 ms
コンパイル使用メモリ 191,940 KB
最終ジャッジ日時 2025-01-25 14:59:30
ジャッジサーバーID
(参考情報)
judge7 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 63
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    string s;
    cin>>s;
    cout<<s.size()<<endl;
    reverse(s.begin(),s.end());
    cout<<s<<endl;
}
0