結果

問題 No.508 超ゆとり教育
ユーザー kohei2019kohei2019
提出日時 2022-02-01 20:18:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 41 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 87,228 KB
実行使用メモリ 71,932 KB
最終ジャッジ日時 2023-09-02 02:34:18
合計ジャッジ時間 1,795 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,488 KB
testcase_01 WA -
testcase_02 AC 77 ms
71,932 KB
testcase_03 AC 72 ms
71,720 KB
testcase_04 AC 74 ms
71,680 KB
testcase_05 AC 74 ms
71,756 KB
testcase_06 AC 72 ms
71,812 KB
testcase_07 AC 74 ms
71,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
print(int((N/3)**(1/2)))
0