結果
| 問題 |
No.642 Two Operations No.1
|
| コンテスト | |
| ユーザー |
kichirb3
|
| 提出日時 | 2018-03-07 08:09:56 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 2,000 ms |
| コード長 | 432 bytes |
| コンパイル時間 | 255 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-09-24 11:50:13 |
| 合計ジャッジ時間 | 1,638 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 |
ソースコード
# -*- coding: utf-8 -*-
"""
No.642 Two Operations No.1
https://yukicoder.me/problems/no/642
"""
import sys
from sys import stdin
input = stdin.readline
def solve(N):
ans = 0
while N != 1:
if N % 2 == 0:
N //= 2
else:
N += 1
ans += 1
return ans
def main(args):
N = int(input())
ans = solve(N)
print(ans)
if __name__ == '__main__':
main(sys.argv[1:])
kichirb3