結果
| 問題 | No.932 解法破綻!高橋君 |
| コンテスト | |
| ユーザー |
arutairu
|
| 提出日時 | 2021-08-17 10:11:47 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 335 bytes |
| 記録 | |
| コンパイル時間 | 273 ms |
| コンパイル使用メモリ | 30,848 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-10 06:58:26 |
| 合計ジャッジ時間 | 1,288 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#include <stdio.h>
#include <math.h>
#include <string.h>
int main(){
char s[500003];
int i;
int n;
int c=0;
scanf("%s",s);
n=strlen(s);
for(i=0;i<n;i++){
if(s[i]=='W'||s[i]=='L'||s[i]=='T'||s[i]=='E'||s[i]=='M'){
c++;
}
}
if(c==0){
printf("Done!\n");
}else{
printf("Failed...\n");
}
return 0;
}
arutairu