結果

問題 No.1591 Two Digits
ユーザー Kenneth YongKenneth Yong
提出日時 2021-07-09 22:32:06
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 278 ms / 1,000 ms
コード長 180 bytes
コンパイル時間 13,527 ms
コンパイル使用メモリ 410,860 KB
実行使用メモリ 50,572 KB
最終ジャッジ日時 2023-09-14 09:49:00
合計ジャッジ時間 17,719 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
50,312 KB
testcase_01 AC 272 ms
50,380 KB
testcase_02 AC 274 ms
50,196 KB
testcase_03 AC 275 ms
50,200 KB
testcase_04 AC 278 ms
50,300 KB
testcase_05 AC 275 ms
50,340 KB
testcase_06 AC 270 ms
50,268 KB
testcase_07 AC 277 ms
50,476 KB
testcase_08 AC 275 ms
50,228 KB
testcase_09 AC 278 ms
50,568 KB
testcase_10 AC 275 ms
50,268 KB
testcase_11 AC 274 ms
50,200 KB
testcase_12 AC 278 ms
50,556 KB
testcase_13 AC 275 ms
50,184 KB
testcase_14 AC 273 ms
50,188 KB
testcase_15 AC 270 ms
50,204 KB
testcase_16 AC 275 ms
50,208 KB
testcase_17 AC 271 ms
50,256 KB
testcase_18 AC 271 ms
50,248 KB
testcase_19 AC 274 ms
50,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
	val n = readLine()!!.toInt();
	println(if (n >= 10 && n <= 99) "Yes" else "No");
}
/*
C:\Users\kenne\OneDrive\Desktop\competitive_programming\kotlinmain.kt
*/
0