結果
| 問題 | No.2843 Birthday Present Struggle |
| コンテスト | |
| ユーザー |
Kude
|
| 提出日時 | 2024-08-23 21:04:06 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 141 bytes |
| 記録 | |
| コンパイル時間 | 145 ms |
| コンパイル使用メモリ | 84,864 KB |
| 実行使用メモリ | 51,840 KB |
| 最終ジャッジ日時 | 2026-04-03 21:51:36 |
| 合計ジャッジ時間 | 6,261 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 34 |
ソースコード
input()
input()
input()
cx, cy = map(int, input().split())
print(4)
for dx in (-1, 1):
for dy in (-1, 1):
print(cx + dx, cy + dy)
Kude