結果

問題 No.280 歯車の問題(1)
ユーザー tsunabittsunabit
提出日時 2020-03-25 13:12:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 327 bytes
コンパイル時間 3,913 ms
コンパイル使用メモリ 77,812 KB
実行使用メモリ 56,052 KB
最終ジャッジ日時 2025-01-01 20:27:34
合計ジャッジ時間 10,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
55,600 KB
testcase_01 AC 134 ms
54,860 KB
testcase_02 AC 134 ms
54,520 KB
testcase_03 AC 140 ms
55,540 KB
testcase_04 AC 136 ms
56,052 KB
testcase_05 AC 133 ms
55,788 KB
testcase_06 AC 135 ms
55,020 KB
testcase_07 AC 129 ms
54,720 KB
testcase_08 AC 150 ms
55,404 KB
testcase_09 AC 140 ms
55,784 KB
testcase_10 AC 131 ms
54,648 KB
testcase_11 AC 126 ms
55,696 KB
testcase_12 AC 138 ms
55,444 KB
testcase_13 AC 137 ms
55,560 KB
testcase_14 AC 143 ms
55,556 KB
testcase_15 AC 139 ms
55,024 KB
testcase_16 AC 126 ms
54,492 KB
testcase_17 AC 137 ms
55,604 KB
testcase_18 AC 148 ms
55,876 KB
testcase_19 AC 138 ms
55,872 KB
testcase_20 AC 142 ms
54,980 KB
testcase_21 AC 147 ms
54,856 KB
testcase_22 AC 135 ms
54,920 KB
testcase_23 AC 146 ms
54,704 KB
testcase_24 AC 136 ms
55,572 KB
testcase_25 AC 154 ms
55,720 KB
testcase_26 AC 144 ms
55,084 KB
testcase_27 AC 139 ms
55,680 KB
testcase_28 AC 137 ms
55,304 KB
testcase_29 AC 135 ms
54,664 KB
testcase_30 AC 123 ms
54,632 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