結果

問題 No.280 歯車の問題(1)
ユーザー Mcpu3Mcpu3
提出日時 2018-09-02 17:41:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 1,000 ms
コード長 311 bytes
コンパイル時間 2,541 ms
コンパイル使用メモリ 76,664 KB
実行使用メモリ 55,228 KB
最終ジャッジ日時 2024-10-01 21:05:22
合計ジャッジ時間 10,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
55,180 KB
testcase_01 AC 159 ms
55,184 KB
testcase_02 AC 161 ms
54,740 KB
testcase_03 AC 171 ms
55,044 KB
testcase_04 AC 163 ms
55,012 KB
testcase_05 AC 163 ms
55,064 KB
testcase_06 AC 160 ms
54,952 KB
testcase_07 AC 169 ms
54,892 KB
testcase_08 AC 170 ms
55,196 KB
testcase_09 AC 170 ms
55,064 KB
testcase_10 AC 171 ms
54,932 KB
testcase_11 AC 163 ms
55,032 KB
testcase_12 AC 170 ms
55,016 KB
testcase_13 AC 164 ms
55,028 KB
testcase_14 AC 173 ms
54,648 KB
testcase_15 AC 169 ms
55,068 KB
testcase_16 AC 171 ms
55,028 KB
testcase_17 AC 162 ms
55,144 KB
testcase_18 AC 163 ms
55,036 KB
testcase_19 AC 169 ms
55,228 KB
testcase_20 AC 166 ms
54,948 KB
testcase_21 AC 168 ms
54,944 KB
testcase_22 AC 171 ms
55,048 KB
testcase_23 AC 169 ms
55,096 KB
testcase_24 AC 168 ms
54,808 KB
testcase_25 AC 167 ms
54,836 KB
testcase_26 AC 168 ms
54,864 KB
testcase_27 AC 169 ms
55,172 KB
testcase_28 AC 163 ms
54,876 KB
testcase_29 AC 166 ms
55,016 KB
testcase_30 AC 158 ms
55,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong(),z1=sc.nextLong(),zn=0,t,i;
		for(i=1;i<n;i++) {
			if(i>n-2) zn=sc.nextLong();
			else t=sc.nextLong();
		}
		sc.close();
		System.out.print(zn+"/"+z1);
	}
}
0