結果

問題 No.388 階段 (1)
ユーザー k-a-rgbk-a-rgb
提出日時 2023-08-16 11:09:54
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 109,316 KB
実行使用メモリ 28,296 KB
最終ジャッジ日時 2024-05-03 19:41:46
合計ジャッジ時間 1,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 22 ms
24,084 KB
testcase_02 AC 22 ms
23,900 KB
testcase_03 AC 22 ms
24,076 KB
testcase_04 WA -
testcase_05 AC 21 ms
22,064 KB
testcase_06 AC 21 ms
24,164 KB
testcase_07 AC 21 ms
23,904 KB
testcase_08 AC 22 ms
25,872 KB
testcase_09 AC 24 ms
25,996 KB
testcase_10 WA -
testcase_11 AC 22 ms
21,940 KB
testcase_12 AC 22 ms
25,856 KB
testcase_13 AC 22 ms
23,692 KB
testcase_14 AC 24 ms
24,116 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
public class Program
{
    static void Main()
    {
		//No.388 階段 (1) 不正解
		string s = Console.ReadLine();
		
        string[] t = s.Split(' ');
        long b = long.Parse(t[0]);
        long a = long.Parse(t[1]);
        
		if(b!=0 && b%a == 0 ){
			Console.WriteLine(b / a);
		}else{
			Console.WriteLine(b / a + 1);
		}        
		
    }
}
0