結果

問題 No.427 テレビ
ユーザー shinwisteriashinwisteria
提出日時 2017-03-30 21:48:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 2,642 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-07-07 03:13:55
合計ジャッジ時間 4,363 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,800 KB
testcase_01 AC 106 ms
53,860 KB
testcase_02 AC 105 ms
53,968 KB
testcase_03 AC 99 ms
52,940 KB
testcase_04 AC 109 ms
53,952 KB
testcase_05 AC 111 ms
54,156 KB
testcase_06 AC 111 ms
53,700 KB
testcase_07 AC 102 ms
52,684 KB
testcase_08 AC 111 ms
53,972 KB
testcase_09 AC 108 ms
53,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class TV {

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

	}

}
0