結果

問題 No.932 解法破綻!高橋君
ユーザー 37zigen37zigen
提出日時 2020-01-23 04:31:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 1,953 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-07-18 07:16:01
合計ジャッジ時間 5,294 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,988 KB
testcase_01 AC 113 ms
53,968 KB
testcase_02 AC 112 ms
54,144 KB
testcase_03 AC 102 ms
41,064 KB
testcase_04 AC 100 ms
41,108 KB
testcase_05 AC 114 ms
41,076 KB
testcase_06 AC 104 ms
41,456 KB
testcase_07 AC 116 ms
40,900 KB
testcase_08 AC 97 ms
41,156 KB
testcase_09 AC 116 ms
41,344 KB
testcase_10 AC 113 ms
41,512 KB
testcase_11 AC 116 ms
41,400 KB
testcase_12 AC 123 ms
41,212 KB
testcase_13 AC 107 ms
41,604 KB
testcase_14 AC 113 ms
41,456 KB
testcase_15 AC 114 ms
41,068 KB
testcase_16 AC 130 ms
41,348 KB
testcase_17 AC 200 ms
45,180 KB
testcase_18 AC 204 ms
44,852 KB
testcase_19 AC 212 ms
44,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

class Main{
	public static void main(String[] args){
		new Main().run();
	}
	
	void run(){
		Scanner sc=new Scanner(System.in);
		char[] a=sc.next().toCharArray();
		boolean f=true;
		for(int i=0;i<a.length;++i)f&=a[i]!='L'&&a[i]!='W'&&a[i]!='M';
		System.out.println(f?"Done!":"Failed...");
	}
}
0