結果
| 問題 |
No.638 Sum of "not power of 2"
|
| コンテスト | |
| ユーザー |
coro65536
|
| 提出日時 | 2018-01-26 22:32:56 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 34 ms / 1,000 ms |
| コード長 | 236 bytes |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-30 02:20:01 |
| 合計ジャッジ時間 | 1,461 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 |
ソースコード
# B
N = int(input())
if N <= 5:
print(-1)
quit()
if N == 6:
print(3, 3)
quit()
if N == 7:
print(-1)
quit()
if N % 2 == 0:
print(3, N-3)
quit()
if N-3 & (N-4):
print(3, N-3)
else:
print(5, N-5)
coro65536