結果

問題 No.280 歯車の問題(1)
ユーザー YamaKasaYamaKasa
提出日時 2018-09-09 19:26:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 1,000 ms
コード長 306 bytes
コンパイル時間 2,226 ms
コンパイル使用メモリ 76,016 KB
実行使用メモリ 42,428 KB
最終ジャッジ日時 2024-06-06 09:53:30
合計ジャッジ時間 10,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,940 KB
testcase_01 AC 160 ms
42,228 KB
testcase_02 AC 165 ms
42,300 KB
testcase_03 AC 158 ms
42,176 KB
testcase_04 AC 160 ms
42,012 KB
testcase_05 AC 160 ms
41,808 KB
testcase_06 AC 158 ms
42,384 KB
testcase_07 AC 164 ms
42,084 KB
testcase_08 AC 161 ms
42,300 KB
testcase_09 AC 166 ms
42,176 KB
testcase_10 AC 166 ms
42,080 KB
testcase_11 AC 159 ms
42,104 KB
testcase_12 AC 160 ms
42,072 KB
testcase_13 AC 157 ms
41,896 KB
testcase_14 AC 161 ms
42,232 KB
testcase_15 AC 166 ms
41,904 KB
testcase_16 AC 164 ms
42,328 KB
testcase_17 AC 160 ms
42,428 KB
testcase_18 AC 160 ms
42,132 KB
testcase_19 AC 169 ms
42,360 KB
testcase_20 AC 164 ms
42,408 KB
testcase_21 AC 152 ms
41,880 KB
testcase_22 AC 149 ms
42,360 KB
testcase_23 AC 168 ms
41,840 KB
testcase_24 AC 159 ms
42,228 KB
testcase_25 AC 161 ms
42,380 KB
testcase_26 AC 161 ms
42,360 KB
testcase_27 AC 153 ms
41,420 KB
testcase_28 AC 159 ms
41,940 KB
testcase_29 AC 165 ms
42,100 KB
testcase_30 AC 153 ms
42,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		long[]z = new long[N];
		for(int i = 0; i < N; i++) {
			z[i] = scan.nextLong();
		}
		scan.close();
		System.out.println(z[N-1] + "/" + z[0]);
	}
}
0