結果

問題 No.280 歯車の問題(1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-18 22:12:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 323 bytes
コンパイル時間 2,222 ms
コンパイル使用メモリ 75,860 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2024-05-04 17:20:39
合計ジャッジ時間 8,681 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
42,456 KB
testcase_01 AC 139 ms
42,380 KB
testcase_02 AC 158 ms
42,304 KB
testcase_03 AC 146 ms
42,452 KB
testcase_04 AC 144 ms
42,396 KB
testcase_05 AC 129 ms
42,568 KB
testcase_06 AC 143 ms
42,516 KB
testcase_07 AC 155 ms
42,388 KB
testcase_08 AC 130 ms
42,472 KB
testcase_09 AC 145 ms
42,548 KB
testcase_10 AC 139 ms
42,320 KB
testcase_11 AC 140 ms
42,352 KB
testcase_12 AC 150 ms
42,400 KB
testcase_13 AC 125 ms
42,428 KB
testcase_14 AC 139 ms
42,448 KB
testcase_15 AC 133 ms
42,508 KB
testcase_16 AC 137 ms
42,544 KB
testcase_17 AC 136 ms
42,600 KB
testcase_18 AC 138 ms
42,160 KB
testcase_19 AC 128 ms
42,336 KB
testcase_20 AC 144 ms
42,364 KB
testcase_21 AC 144 ms
42,664 KB
testcase_22 AC 155 ms
42,484 KB
testcase_23 AC 151 ms
42,676 KB
testcase_24 AC 126 ms
42,388 KB
testcase_25 AC 129 ms
42,424 KB
testcase_26 AC 142 ms
41,984 KB
testcase_27 AC 152 ms
42,388 KB
testcase_28 AC 128 ms
42,432 KB
testcase_29 AC 136 ms
42,120 KB
testcase_30 AC 145 ms
42,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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