結果

問題 No.427 テレビ
ユーザー yamax3232yamax3232
提出日時 2018-03-19 12:02:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 1,945 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-06-10 02:50:21
合計ジャッジ時間 3,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,820 KB
testcase_01 AC 110 ms
53,784 KB
testcase_02 AC 113 ms
53,856 KB
testcase_03 AC 100 ms
53,180 KB
testcase_04 AC 111 ms
54,208 KB
testcase_05 AC 110 ms
54,076 KB
testcase_06 AC 115 ms
54,200 KB
testcase_07 AC 110 ms
54,004 KB
testcase_08 AC 113 ms
54,128 KB
testcase_09 AC 101 ms
53,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int h=kb.nextInt();
		int w=kb.nextInt();
		//4:3
		if(3*h==4*w){
			System.out.println("TATE");
		}
		//3:4
		else if(4*h==3*w){
			System.out.println("YOKO");
		}
	}
}
0