結果

問題 No.280 歯車の問題(1)
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 22:23:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 185 ms / 1,000 ms
コード長 296 bytes
コンパイル時間 3,760 ms
コンパイル使用メモリ 75,944 KB
実行使用メモリ 55,064 KB
最終ジャッジ日時 2024-11-22 12:38:35
合計ジャッジ時間 11,861 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
54,696 KB
testcase_01 AC 146 ms
54,472 KB
testcase_02 AC 161 ms
54,728 KB
testcase_03 AC 159 ms
54,956 KB
testcase_04 AC 170 ms
55,004 KB
testcase_05 AC 162 ms
54,844 KB
testcase_06 AC 157 ms
54,996 KB
testcase_07 AC 172 ms
54,592 KB
testcase_08 AC 171 ms
54,696 KB
testcase_09 AC 172 ms
54,548 KB
testcase_10 AC 157 ms
54,068 KB
testcase_11 AC 160 ms
54,660 KB
testcase_12 AC 169 ms
55,056 KB
testcase_13 AC 160 ms
55,004 KB
testcase_14 AC 168 ms
54,888 KB
testcase_15 AC 185 ms
54,792 KB
testcase_16 AC 175 ms
55,064 KB
testcase_17 AC 145 ms
54,624 KB
testcase_18 AC 159 ms
54,716 KB
testcase_19 AC 162 ms
54,820 KB
testcase_20 AC 173 ms
54,424 KB
testcase_21 AC 163 ms
54,804 KB
testcase_22 AC 172 ms
54,336 KB
testcase_23 AC 160 ms
55,032 KB
testcase_24 AC 169 ms
54,692 KB
testcase_25 AC 169 ms
54,952 KB
testcase_26 AC 171 ms
54,508 KB
testcase_27 AC 172 ms
54,460 KB
testcase_28 AC 159 ms
55,008 KB
testcase_29 AC 167 ms
54,708 KB
testcase_30 AC 164 ms
54,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int n = sc.nextInt();
		long a = sc.nextLong(), b = 0;
		for (int i = 1; i < n; i++) {
			b = sc.nextLong();
		}
		System.out.println(b + "/" + a);
	}
}
0