結果

問題 No.280 歯車の問題(1)
ユーザー spaciaspacia
提出日時 2016-01-17 16:34:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 86 ms / 1,000 ms
コード長 396 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 75,884 KB
実行使用メモリ 52,084 KB
最終ジャッジ日時 2024-09-19 20:20:18
合計ジャッジ時間 7,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
51,240 KB
testcase_01 AC 75 ms
51,144 KB
testcase_02 AC 73 ms
51,168 KB
testcase_03 AC 83 ms
50,688 KB
testcase_04 AC 71 ms
51,188 KB
testcase_05 AC 73 ms
50,676 KB
testcase_06 AC 84 ms
51,188 KB
testcase_07 AC 77 ms
51,300 KB
testcase_08 AC 72 ms
50,808 KB
testcase_09 AC 75 ms
51,172 KB
testcase_10 AC 74 ms
51,116 KB
testcase_11 AC 73 ms
51,140 KB
testcase_12 AC 77 ms
51,232 KB
testcase_13 AC 74 ms
51,260 KB
testcase_14 AC 83 ms
50,984 KB
testcase_15 AC 85 ms
51,116 KB
testcase_16 AC 73 ms
50,964 KB
testcase_17 AC 71 ms
51,076 KB
testcase_18 AC 71 ms
50,984 KB
testcase_19 AC 71 ms
50,936 KB
testcase_20 AC 86 ms
52,084 KB
testcase_21 AC 78 ms
51,340 KB
testcase_22 AC 76 ms
51,048 KB
testcase_23 AC 78 ms
51,244 KB
testcase_24 AC 74 ms
50,904 KB
testcase_25 AC 75 ms
51,188 KB
testcase_26 AC 84 ms
51,496 KB
testcase_27 AC 74 ms
51,108 KB
testcase_28 AC 74 ms
51,136 KB
testcase_29 AC 74 ms
50,864 KB
testcase_30 AC 77 ms
50,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		String[] line = br.readLine().split(" ");
		
		out(line[n - 1] + "/" + line[0]);
	}
}
0