結果

問題 No.975 ミスターマックスバリュ
ユーザー rhincodon66rhincodon66
提出日時 2020-01-31 22:22:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 12,567 ms
コンパイル使用メモリ 435,864 KB
実行使用メモリ 65,708 KB
最終ジャッジ日時 2024-09-17 08:48:35
合計ジャッジ時間 16,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
57,080 KB
testcase_01 AC 321 ms
57,092 KB
testcase_02 AC 321 ms
57,088 KB
testcase_03 AC 313 ms
56,916 KB
testcase_04 AC 322 ms
56,924 KB
testcase_05 AC 342 ms
57,176 KB
testcase_06 AC 335 ms
57,128 KB
testcase_07 AC 352 ms
57,152 KB
testcase_08 AC 530 ms
65,708 KB
testcase_09 AC 315 ms
56,840 KB
testcase_10 AC 311 ms
56,828 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^
Main.kt:4:12: warning: variable 'n' is never used
    val (x,n,m) = readLine()!!.split(" ").map{it.toInt()}
           ^
Main.kt:4:14: warning: variable 'm' is never used
    val (x,n,m) = readLine()!!.split(" ").map{it.toInt()}
             ^

ソースコード

diff #

import java.util.*

fun main(args:Array<String>){
    val (x,n,m) = readLine()!!.split(" ").map{it.toInt()}
    val a = readLine()!!.split(" ").map{it.toInt()}
    val b = readLine()!!.split(" ").map{it.toInt()}
    val A = a.any { it -> it == x }
    val B = b.any { it -> it == x }
    println(if(A && B) "MrMaxValu" else if(A) "MrMax" else if(B) "MaxValu" else "-1")
}
0