結果
問題 | No.63 ポッキーゲーム |
ユーザー |
![]() |
提出日時 | 2025-03-31 15:34:59 |
言語 | C# (.NET 8.0.404) |
結果 |
TLE
|
実行時間 | - |
コード長 | 417 bytes |
コンパイル時間 | 19,064 ms |
コンパイル使用メモリ | 169,400 KB |
実行使用メモリ | 38,812 KB |
最終ジャッジ日時 | 2025-03-31 15:35:26 |
合計ジャッジ時間 | 17,637 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 TLE * 1 -- * 10 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (111 ミリ秒)。 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){string[] inputNum = Console.ReadLine().Split(' ');int count = 0;int bitesize = int.Parse(inputNum[1]) * 2;while (int.Parse(inputNum[0]) > bitesize * (count+1)){count++;}Console.WriteLine( count* int.Parse(inputNum[1]));}}