結果
| 問題 | No.2700 Please Hack Greedy Solution! | 
| コンテスト | |
| ユーザー |  sotanishy | 
| 提出日時 | 2024-03-29 21:51:08 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 145 bytes | 
| コンパイル時間 | 240 ms | 
| コンパイル使用メモリ | 82,492 KB | 
| 実行使用メモリ | 67,876 KB | 
| 最終ジャッジ日時 | 2025-01-06 11:36:13 | 
| 合計ジャッジ時間 | 792 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 1 | 
ソースコード
import sys
input = sys.stdin.readline
N = W = 2000
x = 10**5
print(N, W)
print(1, x)
for k in range(2, N + 1):
    print((k - 1) * (x + 1), k)
            
            
            
        