結果
| 問題 | No.1162 Many Quotients hard |
| ユーザー |
iiljj
|
| 提出日時 | 2020-08-12 00:29:14 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 159 bytes |
| 記録 | |
| コンパイル時間 | 55 ms |
| コンパイル使用メモリ | 37,888 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-22 18:32:57 |
| 合計ジャッジ時間 | 2,347 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 41 WA * 1 |
ソースコード
#include <stdio.h>
#include <math.h>
int main(){
long n;
scanf("%ld", &n);
long x = sqrt(n);
printf("%ld\n", x + n / (x + 1));
return 0;
}
iiljj