結果

問題 No.427 テレビ
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-28 22:32:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 2,897 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 36,960 KB
最終ジャッジ日時 2024-05-01 21:36:22
合計ジャッジ時間 4,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,900 KB
testcase_01 AC 48 ms
36,724 KB
testcase_02 AC 50 ms
36,956 KB
testcase_03 AC 50 ms
36,728 KB
testcase_04 AC 49 ms
36,592 KB
testcase_05 AC 49 ms
36,960 KB
testcase_06 AC 50 ms
36,696 KB
testcase_07 AC 48 ms
36,600 KB
testcase_08 AC 48 ms
36,648 KB
testcase_09 AC 49 ms
36,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No427 {
	public static void main(String[] args) throws IOException{
		String[] str = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" ");
		int H = Integer.parseInt(str[0]);
		int W = Integer.parseInt(str[1]);
		if(H > W) System.out.println("TATE");		
		else System.out.println("YOKO");
	}
}
0