結果
問題 |
No.47 ポケットを叩くとビスケットが2倍
|
ユーザー |
![]() |
提出日時 | 2018-11-20 03:56:07 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 190 bytes |
コンパイル時間 | 428 ms |
コンパイル使用メモリ | 59,612 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-24 15:21:09 |
合計ジャッジ時間 | 1,145 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 21 |
ソースコード
#include <iostream> #include <math.h> int main() { int in, out; std::cin >> in; out = (int)sqrt(in); out++; std::cout << out << std::endl; return 0; }