結果
| 問題 | No.322 Geometry Dash |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-28 22:03:50 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 245 bytes |
| 記録 | |
| コンパイル時間 | 242 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 39,968 KB |
| 最終ジャッジ日時 | 2024-09-24 12:16:21 |
| 合計ジャッジ時間 | 52,867 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 16 TLE * 11 |
ソースコード
#!/usr/bin/env python3 import fractions n = int(input()) ts = list(map(int,input().split())) ds = list(map(int,input().split())) xs = [(fractions.Fraction(ds[i], ts[i]), - ts[i], i+1) for i in range(n)] xs.sort() print(*map(lambda p: p[2], xs))