結果

問題 No.932 解法破綻!高橋君
ユーザー マサマサ
提出日時 2022-02-17 15:08:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 3,169 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 62,244 KB
最終ジャッジ日時 2024-06-29 07:41:35
合計ジャッジ時間 6,274 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,512 KB
testcase_01 AC 126 ms
54,196 KB
testcase_02 AC 125 ms
54,220 KB
testcase_03 AC 111 ms
52,620 KB
testcase_04 AC 124 ms
54,008 KB
testcase_05 AC 123 ms
54,084 KB
testcase_06 AC 127 ms
53,800 KB
testcase_07 AC 127 ms
54,012 KB
testcase_08 AC 115 ms
52,916 KB
testcase_09 AC 129 ms
54,184 KB
testcase_10 AC 127 ms
54,348 KB
testcase_11 AC 128 ms
54,092 KB
testcase_12 AC 129 ms
54,104 KB
testcase_13 AC 132 ms
54,192 KB
testcase_14 AC 142 ms
53,968 KB
testcase_15 AC 123 ms
54,136 KB
testcase_16 AC 141 ms
54,420 KB
testcase_17 AC 280 ms
61,936 KB
testcase_18 AC 272 ms
62,244 KB
testcase_19 AC 279 ms
61,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		
		String[] ary = s.split(",");
		
		int flg = 0;
		for (int i = 0; i < ary.length; i++) {
			if (ary[i].equals("TLE") || ary[i].equals("MLE") || ary[i].equals("WA")) {
				flg += 1;
			}
		}
		
		if (flg > 0) {
			System.out.println("Failed...");
		} else {
			System.out.println("Done!");
		}
		
		sc.close();
	}
}
0