結果

問題 No.280 歯車の問題(1)
ユーザー GrenacheGrenache
提出日時 2015-09-18 22:33:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 376 bytes
コンパイル時間 3,392 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-07-19 07:00:43
合計ジャッジ時間 8,979 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,984 KB
testcase_01 AC 116 ms
41,232 KB
testcase_02 AC 129 ms
41,168 KB
testcase_03 AC 128 ms
41,020 KB
testcase_04 AC 121 ms
41,436 KB
testcase_05 AC 116 ms
40,872 KB
testcase_06 AC 125 ms
41,328 KB
testcase_07 AC 126 ms
41,192 KB
testcase_08 AC 130 ms
41,024 KB
testcase_09 AC 126 ms
41,256 KB
testcase_10 AC 132 ms
41,268 KB
testcase_11 AC 120 ms
40,888 KB
testcase_12 AC 127 ms
41,412 KB
testcase_13 AC 116 ms
41,052 KB
testcase_14 AC 118 ms
40,300 KB
testcase_15 AC 113 ms
40,244 KB
testcase_16 AC 134 ms
41,308 KB
testcase_17 AC 122 ms
41,276 KB
testcase_18 AC 119 ms
40,948 KB
testcase_19 AC 126 ms
41,384 KB
testcase_20 AC 128 ms
41,160 KB
testcase_21 AC 113 ms
40,468 KB
testcase_22 AC 122 ms
41,248 KB
testcase_23 AC 123 ms
41,052 KB
testcase_24 AC 120 ms
41,240 KB
testcase_25 AC 127 ms
41,256 KB
testcase_26 AC 123 ms
41,116 KB
testcase_27 AC 126 ms
40,920 KB
testcase_28 AC 125 ms
41,120 KB
testcase_29 AC 122 ms
40,924 KB
testcase_30 AC 117 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder280 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        int[] z = new int[n];
        for (int i = 0; i < n; i++) {
        	z[i] = sc.nextInt();
        }

        System.out.printf("%d/%d\n", z[n - 1], z[0]);

        sc.close();
    }
}
0