結果
問題 | No.151 セグメントフィッシング |
ユーザー | tassi_2012 |
提出日時 | 2015-02-15 23:37:40 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,380 bytes |
コンパイル時間 | 793 ms |
コンパイル使用メモリ | 104,960 KB |
実行使用メモリ | 23,552 KB |
最終ジャッジ日時 | 2024-06-23 20:28:12 |
合計ジャッジ時間 | 47,391 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 25 ms
17,792 KB |
testcase_02 | RE | - |
testcase_03 | AC | 25 ms
17,792 KB |
testcase_04 | AC | 23 ms
17,664 KB |
testcase_05 | AC | 24 ms
18,048 KB |
testcase_06 | AC | 23 ms
17,792 KB |
testcase_07 | AC | 25 ms
17,792 KB |
testcase_08 | AC | 296 ms
19,200 KB |
testcase_09 | AC | 298 ms
19,200 KB |
testcase_10 | AC | 294 ms
19,200 KB |
testcase_11 | AC | 287 ms
19,072 KB |
testcase_12 | AC | 4,517 ms
22,272 KB |
testcase_13 | AC | 4,472 ms
22,272 KB |
testcase_14 | AC | 4,511 ms
22,656 KB |
testcase_15 | AC | 4,486 ms
22,400 KB |
testcase_16 | AC | 4,514 ms
22,400 KB |
testcase_17 | AC | 4,548 ms
23,552 KB |
testcase_18 | AC | 4,439 ms
23,296 KB |
testcase_19 | AC | 1,075 ms
21,888 KB |
testcase_20 | AC | 1,073 ms
21,888 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | WA | - |
コンパイルメッセージ
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 < N; 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; } }