結果

問題 No.494 yukicoder
ユーザー scalerscaler
提出日時 2024-08-31 15:33:32
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 908 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 10,880 ms
コンパイル使用メモリ 242,276 KB
実行使用メモリ 64,388 KB
最終ジャッジ日時 2024-08-31 15:33:53
合計ジャッジ時間 18,153 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 846 ms
64,312 KB
testcase_01 AC 859 ms
64,376 KB
testcase_02 AC 831 ms
64,172 KB
testcase_03 AC 860 ms
64,132 KB
testcase_04 AC 851 ms
64,308 KB
testcase_05 AC 816 ms
64,388 KB
testcase_06 AC 862 ms
64,328 KB
testcase_07 AC 862 ms
64,296 KB
testcase_08 AC 908 ms
64,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

@main
def yuki494(): Unit =
  val s = readLine
  val d = "yukicoder"
  println(d(s.indexOf("?")))
0