結果
| 問題 |
No.1837 Same but Different
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 16:54:45 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 151 bytes |
| コンパイル時間 | 290 ms |
| コンパイル使用メモリ | 82,160 KB |
| 実行使用メモリ | 54,132 KB |
| 最終ジャッジ日時 | 2025-06-12 16:54:51 |
| 合計ジャッジ時間 | 4,071 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 23 |
ソースコード
n = int(input())
# 构造A和B的示例
A = [99, 824, 4353]
B = [0, 1, 5275]
# 输出结果
print(' '.join(map(str, A)))
print(' '.join(map(str, B)))
gew1fw