結果

問題 No.1945 Go Push!
ユーザー eagleeagle
提出日時 2022-05-27 15:26:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 813 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 4,187 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 59,272 KB
最終ジャッジ日時 2024-09-20 15:15:32
合計ジャッジ時間 14,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,684 KB
testcase_01 AC 122 ms
53,908 KB
testcase_02 AC 122 ms
54,032 KB
testcase_03 AC 174 ms
56,168 KB
testcase_04 AC 161 ms
54,220 KB
testcase_05 AC 165 ms
54,184 KB
testcase_06 AC 171 ms
54,328 KB
testcase_07 AC 164 ms
54,236 KB
testcase_08 AC 479 ms
59,272 KB
testcase_09 AC 512 ms
48,900 KB
testcase_10 AC 589 ms
52,472 KB
testcase_11 AC 474 ms
48,564 KB
testcase_12 AC 600 ms
48,476 KB
testcase_13 AC 545 ms
49,740 KB
testcase_14 AC 224 ms
45,620 KB
testcase_15 AC 411 ms
48,568 KB
testcase_16 AC 483 ms
48,224 KB
testcase_17 AC 474 ms
48,408 KB
testcase_18 AC 525 ms
48,744 KB
testcase_19 AC 687 ms
53,164 KB
testcase_20 AC 669 ms
51,856 KB
testcase_21 AC 595 ms
48,388 KB
testcase_22 AC 813 ms
58,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//ボタンの列数
		int N = sc.nextInt();
		//各列のボタンの数
		int[] A = new int[N];
		for(int i = 0; i < N; i++) {
			A[i] = sc.nextInt();
		}
		String ans;
		//Nは偶数か
		if(N % 2 == 0) {
			ans = "Second";
		} else {
			ans = "First";
		}
		System.out.println(ans);
	}
}
0