結果
問題 | No.2700 Please Hack Greedy Solution! |
ユーザー | detteiuu |
提出日時 | 2024-08-11 03:29:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 366 bytes |
コンパイル時間 | 477 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 65,476 KB |
最終ジャッジ日時 | 2024-08-11 03:29:10 |
合計ジャッジ時間 | 1,045 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ソースコード
N = 1000 W = 1000 ans = [] ans.append((10**6, 1)) for i in reversed(range(2, W+1)): if i == W: ans.append((10**6*i-1, i)) else: right = (10**6-ans[-1][0]/ans[-1][1])/(i-1) x = ans[-1][0]/ans[-1][1]-right if x%1 == 0: x += 1 x = int(x) ans.append(((x*i, i))) print(N, W) for a in ans: print(*a)