結果
| 問題 |
No.2700 Please Hack Greedy Solution!
|
| コンテスト | |
| ユーザー |
ゼット
|
| 提出日時 | 2024-03-29 21:21:59 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 179 bytes |
| コンパイル時間 | 253 ms |
| コンパイル使用メモリ | 82,404 KB |
| 実行使用メモリ | 65,380 KB |
| 最終ジャッジ日時 | 2025-01-06 11:34:26 |
| 合計ジャッジ時間 | 889 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
result=[0]*(1001) result[1]=1000 result[1000]=1000**2-1 for x in range(999,1,-1): result[x]=result[x+1]-result[1]-1 print(1000,1000) for i in range(1,1001): print(i,result[i])
ゼット