結果
問題 | No.280 歯車の問題(1) |
ユーザー |
|
提出日時 | 2015-09-18 22:45:36 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 155 bytes |
コンパイル時間 | 108 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-07-19 07:04:43 |
合計ジャッジ時間 | 2,996 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 31 |
ソースコード
import fractions N = int(input()) zs = list(map(int, input().split())) a = zs[0] b = zs[-1] gcd = fractions.gcd(a, b) print('{}/{}'.format(b//gcd, a//gcd))