結果

問題 No.1591 Two Digits
ユーザー Kenneth Yong
提出日時 2021-07-09 22:32:06
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 302 ms / 1,000 ms
コード長 180 bytes
コンパイル時間 12,116 ms
コンパイル使用メモリ 425,708 KB
実行使用メモリ 49,732 KB
最終ジャッジ日時 2024-07-01 17:11:20
合計ジャッジ時間 17,549 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

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