結果

問題 No.857 素振り
ユーザー minokasagominokasago
提出日時 2019-11-01 08:27:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 325 ms / 1,000 ms
コード長 169 bytes
コンパイル時間 12,825 ms
コンパイル使用メモリ 434,900 KB
実行使用メモリ 51,840 KB
最終ジャッジ日時 2024-09-14 22:16:37
合計ジャッジ時間 16,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
51,736 KB
testcase_01 AC 315 ms
51,588 KB
testcase_02 AC 313 ms
51,660 KB
testcase_03 AC 313 ms
51,664 KB
testcase_04 AC 317 ms
51,748 KB
testcase_05 AC 325 ms
51,800 KB
testcase_06 AC 322 ms
51,588 KB
testcase_07 AC 313 ms
51,816 KB
testcase_08 AC 314 ms
51,740 KB
testcase_09 AC 313 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main()
{
    val (x, y, z) = readLine()!!.split(" ").map(String::toLong)
    var ans: Long = z
    if (x <= z) ans--;
    if (y <= z) ans--;
    println("${ans}")
}
0