結果

問題 No.714 回転寿司屋のシミュレート
ユーザー pluto77pluto77
提出日時 2018-07-26 18:50:07
言語 Python2
(2.7.18)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 03:23:04
合計ジャッジ時間 2,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,816 KB
testcase_01 AC 13 ms
6,940 KB
testcase_02 AC 14 ms
6,940 KB
testcase_03 AC 15 ms
6,940 KB
testcase_04 AC 17 ms
6,940 KB
testcase_05 AC 21 ms
6,940 KB
testcase_06 AC 31 ms
6,944 KB
testcase_07 AC 37 ms
6,940 KB
testcase_08 AC 57 ms
6,940 KB
testcase_09 AC 28 ms
6,944 KB
testcase_10 AC 24 ms
6,940 KB
testcase_11 AC 28 ms
6,940 KB
testcase_12 AC 25 ms
6,944 KB
testcase_13 AC 27 ms
6,940 KB
testcase_14 AC 26 ms
6,940 KB
testcase_15 AC 26 ms
6,940 KB
testcase_16 AC 27 ms
6,940 KB
testcase_17 AC 23 ms
6,940 KB
testcase_18 AC 25 ms
6,940 KB
testcase_19 AC 26 ms
6,944 KB
testcase_20 AC 24 ms
6,944 KB
testcase_21 AC 26 ms
6,940 KB
testcase_22 AC 20 ms
6,940 KB
testcase_23 AC 20 ms
6,940 KB
testcase_24 AC 21 ms
6,940 KB
testcase_25 AC 19 ms
6,940 KB
testcase_26 AC 20 ms
6,940 KB
testcase_27 AC 18 ms
6,944 KB
testcase_28 AC 20 ms
6,940 KB
testcase_29 AC 19 ms
6,944 KB
testcase_30 AC 12 ms
6,944 KB
testcase_31 AC 14 ms
6,940 KB
testcase_32 AC 13 ms
6,940 KB
testcase_33 AC 13 ms
6,940 KB
testcase_34 AC 13 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki714
from collections import Counter

n=int(raw_input())
l=[Counter() for i in xrange(20)]
for i in xrange(n):
 d=raw_input().split()
 if d[0]=='0':
  x=int(d[1])-1
  l[x]=Counter(d[3:])
 elif d[0]=='1':
  for j in xrange(20):
   if l[j][d[1]]>0:
    print j+1
    l[j][d[1]]-=1
    break
  else:
   print -1
 else:
  l[int(d[1])-1]=Counter()
0