結果
問題 |
No.3037 トグルトグルトグル!
|
ユーザー |
![]() |
提出日時 | 2025-03-01 06:31:28 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 84 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 82,716 KB |
実行使用メモリ | 66,572 KB |
最終ジャッジ日時 | 2025-03-01 06:31:33 |
合計ジャッジ時間 | 4,185 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 TLE * 1 |
ソースコード
N = int(input()) ans = 0 x = 1 while x*x <= N: ans += 1 x += 1 print(ans)