結果

問題 No.700 LOVE
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-16 02:44:58
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 14,543 ms
コンパイル使用メモリ 439,488 KB
実行使用メモリ 53,360 KB
最終ジャッジ日時 2024-07-22 23:19:21
合計ジャッジ時間 22,139 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
52,096 KB
testcase_01 AC 331 ms
52,192 KB
testcase_02 AC 333 ms
52,084 KB
testcase_03 AC 332 ms
53,360 KB
testcase_04 AC 331 ms
51,940 KB
testcase_05 AC 329 ms
52,124 KB
testcase_06 AC 331 ms
51,920 KB
testcase_07 AC 330 ms
51,864 KB
testcase_08 AC 331 ms
51,988 KB
testcase_09 AC 332 ms
51,920 KB
testcase_10 AC 336 ms
52,012 KB
testcase_11 AC 341 ms
52,140 KB
testcase_12 AC 340 ms
52,068 KB
testcase_13 AC 337 ms
51,856 KB
testcase_14 AC 338 ms
51,844 KB
testcase_15 AC 341 ms
52,036 KB
testcase_16 AC 340 ms
51,956 KB
testcase_17 AC 341 ms
51,824 KB
testcase_18 AC 338 ms
51,924 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:2:11: warning: variable 'm' is never used
  val (n, m) = readLine()!!.split(" ").map(String::toInt)
          ^

ソースコード

diff #

fun main(args:Array<String>) {
  val (n, m) = readLine()!!.split(" ").map(String::toInt)
  (1..n).map { readLine()!!.contains("LOVE") }.any { it }.let { when { it == true -> "YES"; else -> "NO"} }.run(::println)
}
0