結果

問題 No.102 トランプを奪え
ユーザー scalerscaler
提出日時 2024-08-31 14:40:32
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 932 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 11,338 ms
コンパイル使用メモリ 275,764 KB
実行使用メモリ 65,048 KB
最終ジャッジ日時 2024-08-31 14:40:58
合計ジャッジ時間 23,565 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 912 ms
64,828 KB
testcase_01 AC 927 ms
64,948 KB
testcase_02 AC 889 ms
65,048 KB
testcase_03 AC 903 ms
65,024 KB
testcase_04 AC 909 ms
64,752 KB
testcase_05 AC 906 ms
64,912 KB
testcase_06 AC 876 ms
65,020 KB
testcase_07 AC 907 ms
64,760 KB
testcase_08 AC 908 ms
64,912 KB
testcase_09 AC 932 ms
64,656 KB
testcase_10 AC 892 ms
65,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

@main
def yuki102(): Unit =
  val n1234 = readLine.split(" ").map(_.toInt).map(_ % 4).reduceLeft(_^_)
  println(if n1234 == 0 then "Jiro" else "Taro")
0