結果

問題 No.508 超ゆとり教育
ユーザー c7t1012c7t1012
提出日時 2018-04-08 20:27:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 66 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 10,568 KB
実行使用メモリ 29,704 KB
最終ジャッジ日時 2023-09-09 03:13:45
合計ジャッジ時間 3,283 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
29,468 KB
testcase_01 WA -
testcase_02 AC 134 ms
29,448 KB
testcase_03 AC 133 ms
29,516 KB
testcase_04 AC 131 ms
29,540 KB
testcase_05 AC 132 ms
29,512 KB
testcase_06 AC 129 ms
29,436 KB
testcase_07 AC 133 ms
29,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n = int(input())
r = int(np.sqrt(n/3))
print(r)
0