結果

問題 No.280 歯車の問題(1)
ユーザー htensaihtensai
提出日時 2020-05-07 13:47:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 1,000 ms
コード長 309 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 76,620 KB
実行使用メモリ 55,160 KB
最終ジャッジ日時 2024-07-03 09:24:38
合計ジャッジ時間 9,074 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,720 KB
testcase_01 AC 145 ms
54,936 KB
testcase_02 AC 155 ms
54,808 KB
testcase_03 AC 156 ms
54,912 KB
testcase_04 AC 146 ms
54,816 KB
testcase_05 AC 149 ms
54,924 KB
testcase_06 AC 148 ms
54,988 KB
testcase_07 AC 162 ms
55,160 KB
testcase_08 AC 151 ms
55,024 KB
testcase_09 AC 136 ms
54,672 KB
testcase_10 AC 152 ms
54,788 KB
testcase_11 AC 139 ms
55,000 KB
testcase_12 AC 155 ms
54,704 KB
testcase_13 AC 149 ms
54,996 KB
testcase_14 AC 151 ms
54,876 KB
testcase_15 AC 160 ms
54,968 KB
testcase_16 AC 155 ms
55,136 KB
testcase_17 AC 130 ms
54,392 KB
testcase_18 AC 145 ms
54,876 KB
testcase_19 AC 160 ms
54,720 KB
testcase_20 AC 147 ms
54,512 KB
testcase_21 AC 140 ms
54,712 KB
testcase_22 AC 142 ms
53,972 KB
testcase_23 AC 155 ms
54,780 KB
testcase_24 AC 132 ms
54,604 KB
testcase_25 AC 154 ms
54,876 KB
testcase_26 AC 161 ms
54,720 KB
testcase_27 AC 154 ms
54,552 KB
testcase_28 AC 148 ms
54,996 KB
testcase_29 AC 157 ms
54,952 KB
testcase_30 AC 143 ms
54,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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