結果

問題 No.932 解法破綻!高橋君
ユーザー evawenis
提出日時 2020-05-20 23:13:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 1,825 ms
コンパイル使用メモリ 196,952 KB
最終ジャッジ日時 2025-01-10 13:27:35
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
	cin.tie(0),ios::sync_with_stdio(false);
	string s; cin>>s;
	sort(s.begin(),s.end());
	cout<<(s.back()=='C'?"Done!"s:"Failed..."s)<<"\n"s;
}
0