結果

問題 No.280 歯車の問題(1)
ユーザー Mamonbo
提出日時 2015-10-21 18:24:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 225 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-07-22 11:23:08
合計ジャッジ時間 4,101 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding=UTF-8

#手 a b だと減速比b/a
#これ繋げていったら結局途中関係なくね
N=int(input())
mojir=input()
hyo=mojir.split(' ')
z=[int(mono) for mono in hyo]

print('{b}/{a}'.format(a=z[0],b=z[-1]))

    
0