結果
| 問題 |
No.3037 トグルトグルトグル!
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-02-28 22:15:51 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 88 bytes |
| コンパイル時間 | 536 ms |
| コンパイル使用メモリ | 82,312 KB |
| 実行使用メモリ | 59,316 KB |
| 最終ジャッジ日時 | 2025-02-28 22:15:55 |
| 合計ジャッジ時間 | 3,818 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 TLE * 1 |
ソースコード
N=int(input())
ans=0
for i in range(1,N):
if i*i<=N:ans+=1
else:break
print(ans)