結果

問題 No.102 トランプを奪え
ユーザー 37zigen37zigen
提出日時 2020-03-30 19:50:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 3,209 ms
コンパイル使用メモリ 75,128 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-06-23 00:40:04
合計ジャッジ時間 5,332 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,344 KB
testcase_01 AC 107 ms
41,032 KB
testcase_02 AC 102 ms
41,428 KB
testcase_03 AC 118 ms
41,268 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 115 ms
41,268 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 110 ms
41,116 KB
testcase_10 AC 100 ms
40,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;


class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		long[] N=new long[4];
		long ans=0;
		for(int i=0;i<4;++i) {
			N[i]=sc.nextLong()%3;
			ans^=N[i];
		}
		System.out.println(ans!=0?"Taro":"Jiro");
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0