結果

問題 No.280 歯車の問題(1)
ユーザー MoominPazMoominPaz
提出日時 2015-10-25 23:42:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 483 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 76,700 KB
実行使用メモリ 55,376 KB
最終ジャッジ日時 2024-09-13 09:09:36
合計ジャッジ時間 9,858 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,776 KB
testcase_01 AC 158 ms
55,128 KB
testcase_02 AC 166 ms
54,676 KB
testcase_03 AC 156 ms
54,832 KB
testcase_04 AC 160 ms
55,108 KB
testcase_05 AC 159 ms
55,148 KB
testcase_06 AC 156 ms
55,000 KB
testcase_07 AC 163 ms
54,580 KB
testcase_08 AC 162 ms
54,460 KB
testcase_09 AC 168 ms
54,312 KB
testcase_10 AC 163 ms
54,916 KB
testcase_11 AC 157 ms
54,828 KB
testcase_12 AC 164 ms
54,984 KB
testcase_13 AC 157 ms
54,784 KB
testcase_14 AC 167 ms
55,060 KB
testcase_15 AC 168 ms
54,844 KB
testcase_16 AC 166 ms
54,912 KB
testcase_17 AC 160 ms
55,252 KB
testcase_18 AC 157 ms
54,816 KB
testcase_19 AC 164 ms
55,080 KB
testcase_20 AC 162 ms
54,812 KB
testcase_21 AC 165 ms
55,128 KB
testcase_22 AC 163 ms
55,376 KB
testcase_23 AC 164 ms
54,952 KB
testcase_24 AC 160 ms
55,072 KB
testcase_25 AC 164 ms
54,944 KB
testcase_26 AC 165 ms
54,976 KB
testcase_27 AC 163 ms
54,940 KB
testcase_28 AC 162 ms
54,888 KB
testcase_29 AC 163 ms
55,084 KB
testcase_30 AC 155 ms
54,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    Scanner sc = new Scanner(System.in);
    int cnt;
    int za;
    int zb;
    int[] sita;
    public static void main(String[] args) {
        new Main().solve();
    }

    void solve() {
        cnt = sc.nextInt();
        sita = new int[cnt];
        for(int i = 0; i < cnt; i++) {
            sita[i] = sc.nextInt();
        }
        za = sita[0];
        zb = sita[cnt - 1];
        System.out.println(zb + "/" + za);
    }
}
0