結果
| 問題 |
No.1162 Many Quotients hard
|
| ユーザー |
iiljj
|
| 提出日時 | 2020-08-12 00:32:55 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 194 bytes |
| コンパイル時間 | 445 ms |
| コンパイル使用メモリ | 29,824 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-09 18:22:48 |
| 合計ジャッジ時間 | 1,633 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 42 |
ソースコード
#include <stdio.h>
#include <math.h>
int main(){
long n;
scanf("%ld", &n);
long x = sqrt(n) + 10000;
while (x * x > n) --x;
printf("%ld\n", x + n / (x + 1));
return 0;
}
iiljj