結果

問題 No.427 テレビ
ユーザー Michae'GonMichae'Gon
提出日時 2017-02-21 01:43:29
言語 F#
(F# 4.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 3,211 ms
コンパイル使用メモリ 159,108 KB
実行使用メモリ 24,248 KB
最終ジャッジ日時 2023-08-28 22:06:17
合計ジャッジ時間 4,625 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
22,236 KB
testcase_01 AC 58 ms
22,116 KB
testcase_02 AC 59 ms
22,156 KB
testcase_03 AC 58 ms
22,188 KB
testcase_04 AC 58 ms
22,084 KB
testcase_05 AC 59 ms
24,248 KB
testcase_06 AC 59 ms
22,208 KB
testcase_07 AC 59 ms
22,084 KB
testcase_08 AC 58 ms
20,040 KB
testcase_09 AC 59 ms
24,228 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

module Main
open System

let hw = Console.ReadLine().Split(' ')
        |> Array.map int

Console.WriteLine(
    if hw.[0] > hw.[1] then
        "TATE"
    else
        "YOKO"
)
0