結果

問題 No.280 歯車の問題(1)
ユーザー tentententen
提出日時 2021-01-18 18:43:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 1,000 ms
コード長 292 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 76,244 KB
実行使用メモリ 42,564 KB
最終ジャッジ日時 2024-12-14 09:29:45
合計ジャッジ時間 10,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
42,344 KB
testcase_01 AC 146 ms
41,820 KB
testcase_02 AC 150 ms
41,808 KB
testcase_03 AC 161 ms
42,300 KB
testcase_04 AC 161 ms
42,060 KB
testcase_05 AC 162 ms
42,364 KB
testcase_06 AC 166 ms
42,144 KB
testcase_07 AC 154 ms
41,852 KB
testcase_08 AC 169 ms
42,480 KB
testcase_09 AC 162 ms
41,856 KB
testcase_10 AC 166 ms
42,476 KB
testcase_11 AC 157 ms
42,260 KB
testcase_12 AC 172 ms
42,368 KB
testcase_13 AC 161 ms
42,484 KB
testcase_14 AC 165 ms
42,336 KB
testcase_15 AC 168 ms
42,544 KB
testcase_16 AC 175 ms
42,340 KB
testcase_17 AC 158 ms
41,884 KB
testcase_18 AC 159 ms
42,276 KB
testcase_19 AC 165 ms
42,480 KB
testcase_20 AC 174 ms
42,216 KB
testcase_21 AC 174 ms
42,240 KB
testcase_22 AC 173 ms
42,368 KB
testcase_23 AC 171 ms
42,564 KB
testcase_24 AC 148 ms
41,700 KB
testcase_25 AC 172 ms
42,424 KB
testcase_26 AC 171 ms
42,476 KB
testcase_27 AC 153 ms
42,184 KB
testcase_28 AC 159 ms
42,532 KB
testcase_29 AC 177 ms
42,172 KB
testcase_30 AC 160 ms
42,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		System.out.println(arr[n - 1] + "/" + arr[0]);
	}
}
0