結果

問題 No.427 テレビ
ユーザー atkrym
提出日時 2016-10-18 11:34:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 75,176 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-12-21 17:32:57
合計ジャッジ時間 3,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int h = sc.nextInt();
        int w = sc.nextInt();
        
        if (h < w) {
            System.out.println("YOKO");
        } else {
            System.out.println("TATE");
        }
    }
}
0