結果

問題 No.280 歯車の問題(1)
ユーザー kou6839kou6839
提出日時 2015-09-21 13:05:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 371 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 78,316 KB
実行使用メモリ 55,144 KB
最終ジャッジ日時 2024-07-19 08:25:39
合計ジャッジ時間 9,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,864 KB
testcase_01 AC 137 ms
54,856 KB
testcase_02 AC 150 ms
54,332 KB
testcase_03 AC 137 ms
54,676 KB
testcase_04 AC 138 ms
54,704 KB
testcase_05 AC 125 ms
54,072 KB
testcase_06 AC 136 ms
54,736 KB
testcase_07 AC 129 ms
54,176 KB
testcase_08 AC 132 ms
54,440 KB
testcase_09 AC 154 ms
54,240 KB
testcase_10 AC 133 ms
53,060 KB
testcase_11 AC 138 ms
54,860 KB
testcase_12 AC 147 ms
53,932 KB
testcase_13 AC 133 ms
54,572 KB
testcase_14 AC 129 ms
54,216 KB
testcase_15 AC 148 ms
54,276 KB
testcase_16 AC 151 ms
54,236 KB
testcase_17 AC 141 ms
55,144 KB
testcase_18 AC 125 ms
54,440 KB
testcase_19 AC 160 ms
53,920 KB
testcase_20 AC 155 ms
54,532 KB
testcase_21 AC 154 ms
54,212 KB
testcase_22 AC 148 ms
54,792 KB
testcase_23 AC 124 ms
52,768 KB
testcase_24 AC 144 ms
54,816 KB
testcase_25 AC 141 ms
54,756 KB
testcase_26 AC 144 ms
54,828 KB
testcase_27 AC 151 ms
54,536 KB
testcase_28 AC 148 ms
55,000 KB
testcase_29 AC 149 ms
54,412 KB
testcase_30 AC 119 ms
54,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.concurrent.locks.ReentrantReadWriteLock;

public class Main{
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		
		int n = sc.nextInt();
		int[] z = new int[n];
		for(int i=0;i<n;i++) z[i]=sc.nextInt();
		System.out.println(z[n-1]+"/"+z[0]);
	}
}
0