結果

問題 No.508 超ゆとり教育
ユーザー MaboyMaboy
提出日時 2017-04-29 07:52:16
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 63 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 10,544 KB
実行使用メモリ 7,976 KB
最終ジャッジ日時 2023-10-11 20:17:32
合計ジャッジ時間 982 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,852 KB
testcase_01 AC 16 ms
7,880 KB
testcase_02 AC 15 ms
7,900 KB
testcase_03 AC 16 ms
7,964 KB
testcase_04 AC 15 ms
7,884 KB
testcase_05 AC 15 ms
7,824 KB
testcase_06 AC 16 ms
7,976 KB
testcase_07 AC 16 ms
7,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

b=(int(input())/3)**.5
print(int(b)+1 if b!=int(b) else int(b))
0