結果

問題 No.427 テレビ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-10 02:06:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 1,826 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-06-02 03:46:35
合計ジャッジ時間 3,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,112 KB
testcase_01 AC 117 ms
40,144 KB
testcase_02 AC 123 ms
41,760 KB
testcase_03 AC 123 ms
41,404 KB
testcase_04 AC 123 ms
41,028 KB
testcase_05 AC 124 ms
41,428 KB
testcase_06 AC 118 ms
41,464 KB
testcase_07 AC 116 ms
41,444 KB
testcase_08 AC 115 ms
41,604 KB
testcase_09 AC 109 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int H = sc.nextInt();
        int W = sc.nextInt();
        if(H>W){
            System.out.println("TATE");
        }else{
            System.out.println("YOKO");
        }
    }
}
0