結果
| 問題 |
No.388 階段 (1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-24 16:43:58 |
| 言語 | C# (.NET 8.0.404) |
| 結果 |
AC
|
| 実行時間 | 50 ms / 2,000 ms |
| コード長 | 420 bytes |
| コンパイル時間 | 8,473 ms |
| コンパイル使用メモリ | 167,952 KB |
| 実行使用メモリ | 182,672 KB |
| 最終ジャッジ日時 | 2024-09-20 14:25:49 |
| 合計ジャッジ時間 | 9,744 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (105 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System;
namespace yukicoder
{
class Program
{
static void Main(string[] args)
{
int num = 0;
string[] str = Console.ReadLine().Split(' ');
int a = int.Parse(str[0]);//現在居る段数
int b = int.Parse(str[1]);//一階層分に相当する段数
num = (a / b)+1;
Console.WriteLine(num.ToString());
}
}
}