結果
問題 |
No.143 豆
|
ユーザー |
![]() |
提出日時 | 2025-03-31 17:38:46 |
言語 | C# (.NET 8.0.404) |
結果 |
RE
|
実行時間 | - |
コード長 | 237 bytes |
コンパイル時間 | 19,431 ms |
コンパイル使用メモリ | 173,224 KB |
実行使用メモリ | 195,624 KB |
最終ジャッジ日時 | 2025-03-31 17:40:12 |
合計ジャッジ時間 | 14,616 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 16 MLE * 1 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (110 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
class Program { static void Main(string[] args) { double n = double.Parse(Console.ReadLine()); double ans = Math.Round(Math.Sqrt(n / 3)); Console.WriteLine(ans); } }