結果
問題 | No.151 セグメントフィッシング |
ユーザー | haruki_57 |
提出日時 | 2015-02-14 13:05:31 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,152 bytes |
コンパイル時間 | 4,223 ms |
コンパイル使用メモリ | 77,276 KB |
実行使用メモリ | 45,696 KB |
最終ジャッジ日時 | 2024-06-23 20:06:22 |
合計ジャッジ時間 | 20,237 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
36,552 KB |
testcase_01 | AC | 50 ms
36,880 KB |
testcase_02 | AC | 49 ms
36,408 KB |
testcase_03 | AC | 48 ms
36,880 KB |
testcase_04 | AC | 48 ms
36,792 KB |
testcase_05 | AC | 49 ms
37,008 KB |
testcase_06 | AC | 50 ms
36,748 KB |
testcase_07 | AC | 49 ms
36,924 KB |
testcase_08 | AC | 250 ms
41,492 KB |
testcase_09 | AC | 235 ms
44,708 KB |
testcase_10 | AC | 218 ms
41,312 KB |
testcase_11 | AC | 220 ms
45,696 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
import java.util.Scanner; public class SegmentFishing { /** * @param args */ public static void main(String[] args) throws Exception{ int N = NI(); int Q = NI(); int[][] seg = new int[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 { int 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(int[][] seg){ int right = seg[seg.length-1][0]; int 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; } } }