結果
問題 |
No.3037 トグルトグルトグル!
|
ユーザー |
|
提出日時 | 2025-03-02 19:13:40 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 90 bytes |
コンパイル時間 | 543 ms |
コンパイル使用メモリ | 82,904 KB |
実行使用メモリ | 59,676 KB |
最終ジャッジ日時 | 2025-03-02 19:13:45 |
合計ジャッジ時間 | 4,489 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | AC * 2 WA * 9 TLE * 1 |
ソースコード
N = int(input()) tmp = 0 now = 1 while now * now <= N: tmp += 1 now += 1 print(N - tmp)