結果

問題 No.3078 Difference Sum Query
ユーザー gew1fw
提出日時 2025-06-12 21:34:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 126 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2025-06-12 21:36:14
合計ジャッジ時間 2,726 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

# Read the first line containing N and M
N, M = map(int, input().split())

# Output N as the minimal TSP cycle weight
print(N)
0