結果
| 問題 | No.322 Geometry Dash |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-29 01:22:52 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1,346 ms / 2,000 ms |
| + 482µs | |
| コード長 | 239 bytes |
| 記録 | |
| コンパイル時間 | 243 ms |
| コンパイル使用メモリ | 95,948 KB |
| 実行使用メモリ | 136,692 KB |
| 最終ジャッジ日時 | 2026-09-03 06:12:46 |
| 合計ジャッジ時間 | 34,798 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 27 |
ソースコード
#!/usr/bin/env python3 import fractions n = int(input()) ts = list(map(int,input().split())) ds = list(map(int,input().split())) print(*map(lambda p: p[2], sorted(map(lambda i: (fractions.Fraction(ds[i], ts[i]), - ts[i], i+1), range(n)))))