結果

問題 No.427 テレビ
ユーザー yuiyui
提出日時 2017-02-20 17:12:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 2,555 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 41,136 KB
最終ジャッジ日時 2024-12-30 06:26:21
合計ジャッジ時間 4,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
40,944 KB
testcase_01 AC 129 ms
39,696 KB
testcase_02 AC 148 ms
41,136 KB
testcase_03 AC 147 ms
40,960 KB
testcase_04 AC 145 ms
40,816 KB
testcase_05 AC 149 ms
40,928 KB
testcase_06 AC 140 ms
40,852 KB
testcase_07 AC 129 ms
39,880 KB
testcase_08 AC 146 ms
40,932 KB
testcase_09 AC 139 ms
39,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.Scanner;

public class Main {
	public static void main(String[] args){

		Scanner sc = new Scanner(System.in);
		int tate = sc.nextInt();
		int yoko = sc.nextInt();
		if(tate>yoko){
			System.out.println("TATE");
		}else{
			System.out.println("YOKO");
		}
	}
}
0