結果
問題 | No.151 セグメントフィッシング |
ユーザー | tassi_2012 |
提出日時 | 2015-02-15 23:45:14 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,380 bytes |
コンパイル時間 | 934 ms |
コンパイル使用メモリ | 110,300 KB |
実行使用メモリ | 31,616 KB |
最終ジャッジ日時 | 2024-06-23 20:33:26 |
合計ジャッジ時間 | 52,598 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
26,340 KB |
testcase_01 | AC | 26 ms
23,980 KB |
testcase_02 | AC | 25 ms
24,044 KB |
testcase_03 | AC | 26 ms
25,940 KB |
testcase_04 | AC | 26 ms
24,156 KB |
testcase_05 | AC | 26 ms
23,856 KB |
testcase_06 | AC | 27 ms
25,980 KB |
testcase_07 | AC | 27 ms
24,044 KB |
testcase_08 | AC | 300 ms
21,936 KB |
testcase_09 | AC | 302 ms
24,168 KB |
testcase_10 | AC | 302 ms
28,312 KB |
testcase_11 | AC | 300 ms
24,296 KB |
testcase_12 | AC | 4,667 ms
30,580 KB |
testcase_13 | AC | 4,662 ms
30,596 KB |
testcase_14 | AC | 4,589 ms
28,668 KB |
testcase_15 | AC | 4,571 ms
28,676 KB |
testcase_16 | AC | 4,609 ms
30,592 KB |
testcase_17 | AC | 4,603 ms
27,380 KB |
testcase_18 | AC | 4,581 ms
31,616 KB |
testcase_19 | AC | 1,120 ms
28,056 KB |
testcase_20 | AC | 1,128 ms
30,228 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 3,627 ms
30,720 KB |
コンパイルメッセージ
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; class program { public static void Main() { var str = Console.ReadLine().Split(' '); var N = int.Parse(str[0]); var Q = int.Parse(str[1]); Pool pool = new Pool(N); for (int i = 0; i < Q; i++) { str = Console.ReadLine().Split(' '); string x = str[0]; int y = int.Parse(str[1]); long z = long.Parse(str[2]); if (x.Equals("C")) { Console.WriteLine(pool.outputSum(y, (int)z)); } else { pool.add(x, y, z); } pool.next(); } } } public class Pool { private int length; private List<Fish> flist; public Pool(int N) { this.length = N; this.flist = new List<Fish>(); } public void add(string direction, int position, long num) { flist.Add(new Fish(direction, position, num, this.length)); } public void next() { foreach(Fish fish in flist){ fish.next(); } } public long outputSum(int left, int right) { long sum = 0; foreach (Fish fish in flist) { int posi = fish.getPosition(); if (left <= posi && posi < right) { sum += fish.getNum(); } } return sum; } } public class Fish { private string direction; private int position; private long num; private int length; public Fish(string direction, int position, long num, int length) { this.direction = direction; this.position = position; this.num = num; this.length = length; } public void next() { if (direction.Equals("R")) { if (position + 1 == length) { direction = "L"; } else { position++; } } else { if (position - 1 < 0) { direction = "R"; } else { position--; } } } public long getNum() { return this.num; } public int getPosition() { return this.position; } }