結果

問題 No.932 解法破綻!高橋君
ユーザー shosinshashosinsha
提出日時 2019-12-23 12:56:56
言語 Scala(Beta)
(3.4.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 219 bytes
コンパイル時間 11,370 ms
コンパイル使用メモリ 270,468 KB
実行使用メモリ 70,392 KB
最終ジャッジ日時 2024-09-16 15:56:50
合計ジャッジ時間 30,441 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 906 ms
63,712 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 AC 922 ms
63,984 KB
testcase_04 AC 922 ms
63,984 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 902 ms
63,880 KB
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App{
  val sc = new Scanner(System.in)

  val s = sc.next

  val results = s.split(',')

  val res = if(results.forall(_ == "AC")) "Done!" else "Failed..."

  println(res)
}
0