結果
問題 | No.322 Geometry Dash |
ユーザー | Tawara |
提出日時 | 2015-12-16 22:39:25 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 1,267 ms / 2,000 ms |
コード長 | 219 bytes |
コンパイル時間 | 62 ms |
コンパイル使用メモリ | 6,784 KB |
実行使用メモリ | 19,096 KB |
最終ジャッジ日時 | 2024-09-16 06:00:16 |
合計ジャッジ時間 | 31,179 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 27 |
ソースコード
N = input() T = map(int,raw_input().split()) D = map(int,raw_input().split()) c = lambda a,b:T[a]*(D[a]+D[b]*2+2)+T[b]*(D[b]+2) f = lambda l,r:c(r,l)-c(l,r) print " ".join(map(lambda x:str(x+1),sorted(xrange(N),cmp=f)))