結果

問題 No.427 テレビ
ユーザー poopi_pokepoopi_poke
提出日時 2016-11-24 22:47:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 2,541 ms
コンパイル使用メモリ 70,936 KB
実行使用メモリ 55,992 KB
最終ジャッジ日時 2023-08-24 13:29:07
合計ジャッジ時間 4,679 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
55,792 KB
testcase_01 AC 123 ms
55,860 KB
testcase_02 AC 124 ms
55,688 KB
testcase_03 AC 125 ms
55,688 KB
testcase_04 AC 125 ms
55,248 KB
testcase_05 AC 124 ms
55,944 KB
testcase_06 AC 125 ms
55,636 KB
testcase_07 AC 124 ms
55,992 KB
testcase_08 AC 126 ms
55,472 KB
testcase_09 AC 124 ms
55,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class A{
	public static void main(String args[]){
	Scanner sc = new Scanner(System.in);
	int a=sc.nextInt();
	int b=sc.nextInt();
	if(a>b){
		System.out.print("TATE");
	}else{
		System.out.print("YOKO");
	}
	}
}
0