結果

問題 No.151 セグメントフィッシング
ユーザー haruki_57haruki_57
提出日時 2015-02-14 13:08:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,677 ms / 5,000 ms
コード長 2,158 bytes
コンパイル時間 3,767 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 58,260 KB
最終ジャッジ日時 2024-06-23 20:09:26
合計ジャッジ時間 21,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,124 KB
testcase_01 AC 54 ms
50,012 KB
testcase_02 AC 53 ms
49,788 KB
testcase_03 AC 55 ms
49,956 KB
testcase_04 AC 55 ms
50,008 KB
testcase_05 AC 55 ms
50,028 KB
testcase_06 AC 56 ms
50,088 KB
testcase_07 AC 55 ms
49,956 KB
testcase_08 AC 246 ms
54,864 KB
testcase_09 AC 263 ms
58,260 KB
testcase_10 AC 238 ms
54,696 KB
testcase_11 AC 287 ms
54,716 KB
testcase_12 AC 1,515 ms
54,952 KB
testcase_13 AC 1,533 ms
54,884 KB
testcase_14 AC 1,538 ms
54,868 KB
testcase_15 AC 1,537 ms
55,040 KB
testcase_16 AC 1,530 ms
55,040 KB
testcase_17 AC 1,130 ms
52,992 KB
testcase_18 AC 1,115 ms
52,960 KB
testcase_19 AC 1,677 ms
54,888 KB
testcase_20 AC 1,662 ms
54,876 KB
testcase_21 AC 1,216 ms
54,816 KB
testcase_22 AC 1,228 ms
54,964 KB
testcase_23 AC 173 ms
53,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class SegmentFishing {

    /**
     * @param args
     */
    public static void main(String[] args) throws Exception{
        int N = NI();
        int Q = NI();
        long[][] seg = new long[N][2];
        StringBuilder sb=new StringBuilder();
        while(Q-->0){
            char c = NC();
            int y = NI();
            int z = NI();
            if(c=='L'){
                seg[y][1]+=z;
            } else if(c=='R'){
                seg[y][0]+=z;
            } else {
                long sum =0;
                for (int i = y; i < z; i++) {
                    sum += seg[i][0]+seg[i][1];
                }
                /*
                for (int i = 0; i < 2; i++) {
                    for (int j = 0; j < seg.length; j++) {
                        System.out.print(seg[j][i]+" ");
                    }
                    System.out.println();
                }
                System.out.println(sum);
                */
                sb.append(sum);
                sb.append('\n');
            }
            
            move(seg);
        }
        System.out.print(sb);
    }
    static void move(long[][] seg){
        long right = seg[seg.length-1][0];
        long left  = seg[0][1];
        // right
        for (int i = seg.length-2; i >= 0; i--) {
            seg[i+1][0] = seg[i][0];
        }
        
        // left
        for (int i = 1;i<seg.length;i++){
            seg[i-1][1] = seg[i][1];
        }
        
        seg[seg.length-1][1] = right;
        seg[0][0] = left;
    }
    static int NI(){
        try {
            int c=System.in.read(),r=0;
            for(;c!='-'&&(c<'0'||'9'<c);)c=System.in.read();
            if(c=='-') return -NI();
            for(;'0'<=c&&c<='9';c=System.in.read())
                r = r * 10 + c - '0';
            return r;
        } catch (Exception e) {
            return -1;
        }
    }
    
    static char NC(){
        try {
            char c=(char)System.in.read();
            for(;c==' '||c=='\n';)c=(char)System.in.read();
            return c;
        } catch (Exception e) {
            return 0;
        }
    }
}
0