結果

問題 No.427 テレビ
ユーザー yuiyui
提出日時 2017-02-20 17:12:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-06-09 14:57:08
合計ジャッジ時間 3,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,344 KB
testcase_01 AC 104 ms
52,752 KB
testcase_02 AC 101 ms
52,780 KB
testcase_03 AC 117 ms
53,952 KB
testcase_04 AC 94 ms
52,592 KB
testcase_05 AC 117 ms
53,856 KB
testcase_06 AC 110 ms
53,972 KB
testcase_07 AC 102 ms
52,948 KB
testcase_08 AC 114 ms
54,044 KB
testcase_09 AC 113 ms
54,072 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