結果
問題 | No.141 魔法少女コバ |
ユーザー |
|
提出日時 | 2021-07-31 19:39:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 5,000 ms |
コード長 | 197 bytes |
コンパイル時間 | 446 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-16 09:40:42 |
合計ジャッジ時間 | 5,150 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 93 |
ソースコード
M, N = map(int, input().split()) cnt = 0 while M: if N > M: N, M = M, N cnt += 1 else: q, mod = divmod(M, N) M = mod cnt += q print(cnt-1)