結果

問題 No.1591 Two Digits
ユーザー バカらっくバカらっく
提出日時 2022-02-03 12:06:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 280 ms / 1,000 ms
コード長 98 bytes
コンパイル時間 12,090 ms
コンパイル使用メモリ 411,820 KB
実行使用メモリ 52,832 KB
最終ジャッジ日時 2023-09-02 03:07:44
合計ジャッジ時間 19,305 ms
ジャッジサーバーID
(参考情報)
judge11 / judge16
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
52,820 KB
testcase_01 AC 278 ms
52,804 KB
testcase_02 AC 280 ms
52,732 KB
testcase_03 AC 278 ms
52,684 KB
testcase_04 AC 274 ms
52,720 KB
testcase_05 AC 276 ms
52,756 KB
testcase_06 AC 275 ms
52,588 KB
testcase_07 AC 275 ms
52,744 KB
testcase_08 AC 274 ms
52,688 KB
testcase_09 AC 273 ms
52,620 KB
testcase_10 AC 277 ms
52,832 KB
testcase_11 AC 276 ms
52,736 KB
testcase_12 AC 272 ms
52,744 KB
testcase_13 AC 274 ms
52,700 KB
testcase_14 AC 277 ms
52,592 KB
testcase_15 AC 274 ms
52,584 KB
testcase_16 AC 277 ms
52,504 KB
testcase_17 AC 273 ms
52,584 KB
testcase_18 AC 275 ms
52,732 KB
testcase_19 AC 278 ms
52,492 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    println(if(readLine()!!.trim().length == 2) "Yes" else "No")
}
0