結果

問題 No.280 歯車の問題(1)
ユーザー tentententen
提出日時 2022-07-29 17:34:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 83 ms / 1,000 ms
コード長 1,167 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 78,848 KB
実行使用メモリ 40,060 KB
最終ジャッジ日時 2024-07-19 08:29:35
合計ジャッジ時間 6,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
38,176 KB
testcase_01 AC 71 ms
38,144 KB
testcase_02 AC 72 ms
38,008 KB
testcase_03 AC 73 ms
40,060 KB
testcase_04 AC 83 ms
38,504 KB
testcase_05 AC 73 ms
39,892 KB
testcase_06 AC 70 ms
38,372 KB
testcase_07 AC 75 ms
39,928 KB
testcase_08 AC 72 ms
39,880 KB
testcase_09 AC 72 ms
39,592 KB
testcase_10 AC 71 ms
38,364 KB
testcase_11 AC 74 ms
37,952 KB
testcase_12 AC 68 ms
38,220 KB
testcase_13 AC 73 ms
38,212 KB
testcase_14 AC 77 ms
38,348 KB
testcase_15 AC 74 ms
39,564 KB
testcase_16 AC 70 ms
37,872 KB
testcase_17 AC 72 ms
38,172 KB
testcase_18 AC 71 ms
38,764 KB
testcase_19 AC 69 ms
39,924 KB
testcase_20 AC 69 ms
40,020 KB
testcase_21 AC 81 ms
38,048 KB
testcase_22 AC 74 ms
40,020 KB
testcase_23 AC 74 ms
37,876 KB
testcase_24 AC 68 ms
39,836 KB
testcase_25 AC 79 ms
39,836 KB
testcase_26 AC 73 ms
39,548 KB
testcase_27 AC 83 ms
39,888 KB
testcase_28 AC 71 ms
38,512 KB
testcase_29 AC 75 ms
38,412 KB
testcase_30 AC 75 ms
38,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int a = 0;
        int b = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (i == 0) {
                b = x;
            } else if (i == n - 1) {
                a = x;
            }
        }
        System.out.println(a + "/" + b);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0