結果

問題 No.280 歯車の問題(1)
ユーザー tentententen
提出日時 2021-01-18 18:43:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 292 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 76,140 KB
実行使用メモリ 55,076 KB
最終ジャッジ日時 2024-05-08 07:30:52
合計ジャッジ時間 9,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
54,836 KB
testcase_01 AC 147 ms
54,996 KB
testcase_02 AC 153 ms
54,848 KB
testcase_03 AC 146 ms
54,064 KB
testcase_04 AC 146 ms
54,664 KB
testcase_05 AC 141 ms
54,508 KB
testcase_06 AC 138 ms
54,480 KB
testcase_07 AC 155 ms
54,764 KB
testcase_08 AC 157 ms
54,812 KB
testcase_09 AC 153 ms
54,736 KB
testcase_10 AC 141 ms
54,484 KB
testcase_11 AC 150 ms
54,904 KB
testcase_12 AC 155 ms
55,000 KB
testcase_13 AC 149 ms
55,064 KB
testcase_14 AC 146 ms
54,384 KB
testcase_15 AC 154 ms
54,984 KB
testcase_16 AC 158 ms
54,452 KB
testcase_17 AC 152 ms
54,944 KB
testcase_18 AC 150 ms
54,992 KB
testcase_19 AC 157 ms
54,468 KB
testcase_20 AC 155 ms
54,744 KB
testcase_21 AC 139 ms
54,224 KB
testcase_22 AC 154 ms
54,736 KB
testcase_23 AC 153 ms
54,860 KB
testcase_24 AC 153 ms
54,892 KB
testcase_25 AC 147 ms
54,576 KB
testcase_26 AC 148 ms
54,136 KB
testcase_27 AC 158 ms
54,992 KB
testcase_28 AC 150 ms
54,824 KB
testcase_29 AC 155 ms
55,076 KB
testcase_30 AC 150 ms
55,020 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