結果

問題 No.280 歯車の問題(1)
ユーザー rlangevinrlangevin
提出日時 2023-01-14 12:24:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 143 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-06-07 14:19:54
合計ジャッジ時間 3,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,140 KB
testcase_01 AC 36 ms
53,264 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 36 ms
53,356 KB
testcase_04 AC 37 ms
52,404 KB
testcase_05 AC 37 ms
51,940 KB
testcase_06 AC 37 ms
53,760 KB
testcase_07 AC 36 ms
52,764 KB
testcase_08 AC 36 ms
52,524 KB
testcase_09 AC 36 ms
52,852 KB
testcase_10 AC 36 ms
53,484 KB
testcase_11 AC 35 ms
53,124 KB
testcase_12 AC 36 ms
52,192 KB
testcase_13 AC 35 ms
52,668 KB
testcase_14 AC 35 ms
52,748 KB
testcase_15 AC 35 ms
52,140 KB
testcase_16 AC 35 ms
52,980 KB
testcase_17 AC 36 ms
52,116 KB
testcase_18 AC 36 ms
52,764 KB
testcase_19 AC 35 ms
52,056 KB
testcase_20 AC 36 ms
52,912 KB
testcase_21 AC 35 ms
52,516 KB
testcase_22 AC 36 ms
52,016 KB
testcase_23 AC 36 ms
52,660 KB
testcase_24 AC 35 ms
52,676 KB
testcase_25 AC 36 ms
52,760 KB
testcase_26 AC 35 ms
52,368 KB
testcase_27 AC 36 ms
52,528 KB
testcase_28 AC 35 ms
53,424 KB
testcase_29 AC 37 ms
53,452 KB
testcase_30 AC 36 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

N = int(input())
z = list(map(int, input().split()))
g = gcd(z[0], z[-1])
a = str(z[0]//g)
b = str(z[-1]//g)
print(b+"/"+a)
0