結果
問題 | No.1162 Many Quotients hard |
ユーザー |
![]() |
提出日時 | 2020-10-19 15:23:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 78 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-21 07:51:15 |
合計ジャッジ時間 | 2,778 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 42 |
ソースコード
N = int(input())s = int(N ** 0.5)print(2 * s if N // s == s else 2 * s - 1)