結果

問題 No.427 テレビ
ユーザー hermione17hermione17
提出日時 2016-10-02 23:37:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 3,739 ms
コンパイル使用メモリ 75,228 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-06-01 09:56:19
合計ジャッジ時間 5,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,228 KB
testcase_01 AC 135 ms
54,372 KB
testcase_02 AC 133 ms
54,204 KB
testcase_03 AC 132 ms
54,028 KB
testcase_04 AC 133 ms
54,352 KB
testcase_05 AC 134 ms
54,160 KB
testcase_06 AC 133 ms
54,032 KB
testcase_07 AC 134 ms
53,944 KB
testcase_08 AC 134 ms
54,248 KB
testcase_09 AC 133 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y427 {
	Y427() throws Exception {
		Scanner in = new Scanner(System.in);
		PrintStream out = new PrintStream(System.out);
		
		int a = in.nextInt();
		int b = in.nextInt();
				
		if (a < b) out.println("YOKO");
		else out.println("TATE");
	}

	public static void main(String argv[]) throws Exception {
		new Y427();
	}
}
0