結果
| 問題 | No.1300 Sum of Inversions |
| コンテスト | |
| ユーザー |
nehan_der_thal
|
| 提出日時 | 2020-11-27 21:25:27 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 154 bytes |
| 記録 | |
| コンパイル時間 | 235 ms |
| コンパイル使用メモリ | 96,104 KB |
| 実行使用メモリ | 79,360 KB |
| 最終ジャッジ日時 | 2026-08-24 08:57:17 |
| 合計ジャッジ時間 | 5,147 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 34 |
ソースコード
N, = map(int, input().split())
d = 0
for c in bin(N):
if c == "1":
d += 1
if d == 1:
print(-1, -1, -1)
else:
print(N&-N, N-(N&-N), N)
nehan_der_thal