結果

問題 No.1591 Two Digits
ユーザー fukafukatanifukafukatani
提出日時 2021-07-13 22:23:28
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 983 ms / 1,000 ms
コード長 165 bytes
コンパイル時間 9,953 ms
コンパイル使用メモリ 243,148 KB
実行使用メモリ 63,860 KB
最終ジャッジ日時 2023-09-15 14:57:19
合計ジャッジ時間 31,108 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 967 ms
62,632 KB
testcase_01 AC 959 ms
62,552 KB
testcase_02 AC 963 ms
62,932 KB
testcase_03 AC 966 ms
62,512 KB
testcase_04 AC 970 ms
62,852 KB
testcase_05 AC 942 ms
63,856 KB
testcase_06 AC 952 ms
63,860 KB
testcase_07 AC 957 ms
62,792 KB
testcase_08 AC 952 ms
63,040 KB
testcase_09 AC 983 ms
62,960 KB
testcase_10 AC 968 ms
62,688 KB
testcase_11 AC 965 ms
62,664 KB
testcase_12 AC 954 ms
63,064 KB
testcase_13 AC 958 ms
62,776 KB
testcase_14 AC 973 ms
62,828 KB
testcase_15 AC 974 ms
62,992 KB
testcase_16 AC 976 ms
62,868 KB
testcase_17 AC 967 ms
62,880 KB
testcase_18 AC 968 ms
62,712 KB
testcase_19 AC 983 ms
62,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
  val sc = new java.util.Scanner(System.in)
  val n = sc.next
  if (n.length == 2) {
    println("Yes")
  } else {
    println("No")
  }
}
0