結果

問題 No.280 歯車の問題(1)
ユーザー tsunabittsunabit
提出日時 2020-03-25 13:12:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 185 ms / 1,000 ms
コード長 327 bytes
コンパイル時間 3,968 ms
コンパイル使用メモリ 75,936 KB
実行使用メモリ 55,224 KB
最終ジャッジ日時 2024-06-10 09:57:36
合計ジャッジ時間 10,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,580 KB
testcase_01 AC 136 ms
54,924 KB
testcase_02 AC 128 ms
54,380 KB
testcase_03 AC 135 ms
54,984 KB
testcase_04 AC 138 ms
54,876 KB
testcase_05 AC 156 ms
54,920 KB
testcase_06 AC 136 ms
54,768 KB
testcase_07 AC 151 ms
54,676 KB
testcase_08 AC 139 ms
54,408 KB
testcase_09 AC 149 ms
54,904 KB
testcase_10 AC 139 ms
54,988 KB
testcase_11 AC 137 ms
54,808 KB
testcase_12 AC 158 ms
54,808 KB
testcase_13 AC 135 ms
54,628 KB
testcase_14 AC 151 ms
54,832 KB
testcase_15 AC 155 ms
54,916 KB
testcase_16 AC 144 ms
54,944 KB
testcase_17 AC 138 ms
54,780 KB
testcase_18 AC 156 ms
54,896 KB
testcase_19 AC 142 ms
54,704 KB
testcase_20 AC 142 ms
54,956 KB
testcase_21 AC 146 ms
55,224 KB
testcase_22 AC 185 ms
54,920 KB
testcase_23 AC 157 ms
55,080 KB
testcase_24 AC 153 ms
54,792 KB
testcase_25 AC 151 ms
54,768 KB
testcase_26 AC 142 ms
54,796 KB
testcase_27 AC 136 ms
54,784 KB
testcase_28 AC 143 ms
54,748 KB
testcase_29 AC 153 ms
54,824 KB
testcase_30 AC 135 ms
55,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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