結果

問題 No.280 歯車の問題(1)
ユーザー yansi819yansi819
提出日時 2024-05-22 04:21:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 147 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 53,804 KB
最終ジャッジ日時 2024-05-22 04:21:49
合計ジャッジ時間 4,243 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,588 KB
testcase_01 AC 35 ms
52,260 KB
testcase_02 AC 33 ms
52,504 KB
testcase_03 AC 33 ms
53,760 KB
testcase_04 AC 34 ms
53,344 KB
testcase_05 AC 33 ms
52,252 KB
testcase_06 AC 34 ms
52,212 KB
testcase_07 AC 34 ms
52,988 KB
testcase_08 AC 33 ms
53,804 KB
testcase_09 AC 34 ms
53,252 KB
testcase_10 AC 35 ms
53,536 KB
testcase_11 AC 34 ms
53,308 KB
testcase_12 AC 32 ms
52,232 KB
testcase_13 AC 33 ms
52,276 KB
testcase_14 AC 36 ms
53,420 KB
testcase_15 AC 33 ms
52,468 KB
testcase_16 AC 32 ms
53,444 KB
testcase_17 AC 35 ms
52,372 KB
testcase_18 AC 33 ms
52,084 KB
testcase_19 AC 34 ms
52,180 KB
testcase_20 AC 34 ms
52,584 KB
testcase_21 AC 36 ms
52,656 KB
testcase_22 AC 36 ms
52,540 KB
testcase_23 AC 36 ms
52,744 KB
testcase_24 AC 38 ms
52,008 KB
testcase_25 AC 35 ms
53,052 KB
testcase_26 AC 36 ms
52,188 KB
testcase_27 AC 38 ms
52,368 KB
testcase_28 AC 38 ms
52,692 KB
testcase_29 AC 33 ms
52,268 KB
testcase_30 AC 34 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N = int(input())
Z = list(map(int, input().split()))
g = gcd(Z[0], Z[N - 1])
print(str(Z[N - 1] // g) + "/" + str(Z[0] // g))
0