結果
| 問題 | No.508 超ゆとり教育 |
| コンテスト | |
| ユーザー |
s_shohei
|
| 提出日時 | 2021-09-18 00:24:21 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 86 bytes |
| 記録 | |
| コンパイル時間 | 221 ms |
| コンパイル使用メモリ | 85,668 KB |
| 実行使用メモリ | 52,224 KB |
| 最終ジャッジ日時 | 2026-03-19 14:48:49 |
| 合計ジャッジ時間 | 918 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 7 |
ソースコード
import math
n=int(input())
if n==1:
print(1)
exit()
print(int(math.sqrt(n/3)))
s_shohei