結果
| 問題 |
No.3037 トグルトグルトグル!
|
| コンテスト | |
| ユーザー |
Nauclhlt🪷
|
| 提出日時 | 2025-01-08 23:56:23 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 84 bytes |
| コンパイル時間 | 2,054 ms |
| コンパイル使用メモリ | 81,552 KB |
| 実行使用メモリ | 113,408 KB |
| 最終ジャッジ日時 | 2025-01-17 23:05:22 |
| 合計ジャッジ時間 | 4,413 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 TLE * 1 |
ソースコード
N = int(input())
ans = 0
i = 1
while i * i <= N:
i += 1
ans += 1
print(ans)
Nauclhlt🪷