結果
問題 | No.810 割った余りの個数 |
ユーザー | Crowea |
提出日時 | 2019-04-19 22:07:49 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 719 bytes |
コンパイル時間 | 806 ms |
コンパイル使用メモリ | 110,784 KB |
実行使用メモリ | 825,816 KB |
最終ジャッジ日時 | 2024-09-22 20:08:14 |
合計ジャッジ時間 | 5,316 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
25,012 KB |
testcase_01 | AC | 28 ms
25,040 KB |
testcase_02 | AC | 28 ms
22,712 KB |
testcase_03 | AC | 28 ms
27,340 KB |
testcase_04 | AC | 28 ms
24,908 KB |
testcase_05 | AC | 29 ms
25,048 KB |
testcase_06 | AC | 28 ms
24,884 KB |
testcase_07 | AC | 28 ms
24,912 KB |
testcase_08 | AC | 28 ms
24,760 KB |
testcase_09 | AC | 28 ms
22,840 KB |
testcase_10 | AC | 28 ms
24,624 KB |
testcase_11 | AC | 28 ms
25,012 KB |
testcase_12 | AC | 28 ms
26,832 KB |
testcase_13 | AC | 28 ms
25,008 KB |
testcase_14 | AC | 28 ms
25,040 KB |
testcase_15 | AC | 29 ms
24,884 KB |
testcase_16 | AC | 28 ms
26,964 KB |
testcase_17 | AC | 29 ms
25,012 KB |
testcase_18 | AC | 28 ms
26,832 KB |
testcase_19 | AC | 28 ms
25,004 KB |
testcase_20 | MLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; // No.810 割った余りの個数 namespace No._810 { class Program { static void Main(string[] args) { int L, R, M; int[] p = Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse); L = p[0]; R = p[1]; M = p[2]; var dic = new Dictionary<int, int>(); int div; for (int i = L; i <= R; i++) { div = i % M; if (!dic.ContainsKey(div)) { dic.Add(div, 0); } } Console.WriteLine(dic.Count()); } } }