結果

問題 No.5017 Tool-assisted Shooting
ユーザー hiryuNhiryuN
提出日時 2023-07-22 13:35:53
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 132 bytes
コンパイル時間 1,623 ms
コンパイル使用メモリ 86,440 KB
実行使用メモリ 98,560 KB
スコア 74,830
平均クエリ数 399.74
最終ジャッジ日時 2023-07-22 13:36:16
合計ジャッジ時間 22,260 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
87,332 KB
testcase_01 RE -
testcase_02 AC 104 ms
86,732 KB
testcase_03 AC 103 ms
86,912 KB
testcase_04 AC 123 ms
91,300 KB
testcase_05 AC 119 ms
91,120 KB
testcase_06 AC 104 ms
87,436 KB
testcase_07 AC 125 ms
91,012 KB
testcase_08 AC 106 ms
87,340 KB
testcase_09 AC 109 ms
86,880 KB
testcase_10 AC 128 ms
90,800 KB
testcase_11 AC 108 ms
87,116 KB
testcase_12 AC 101 ms
87,400 KB
testcase_13 AC 119 ms
87,012 KB
testcase_14 AC 111 ms
87,072 KB
testcase_15 AC 105 ms
87,520 KB
testcase_16 AC 101 ms
87,540 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 110 ms
87,288 KB
testcase_20 AC 120 ms
90,968 KB
testcase_21 AC 117 ms
90,796 KB
testcase_22 AC 135 ms
91,100 KB
testcase_23 AC 106 ms
87,572 KB
testcase_24 AC 128 ms
91,232 KB
testcase_25 AC 111 ms
86,692 KB
testcase_26 AC 131 ms
91,384 KB
testcase_27 RE -
testcase_28 AC 121 ms
90,860 KB
testcase_29 AC 113 ms
87,032 KB
testcase_30 AC 125 ms
91,228 KB
testcase_31 AC 103 ms
86,760 KB
testcase_32 AC 110 ms
86,992 KB
testcase_33 AC 109 ms
86,984 KB
testcase_34 RE -
testcase_35 AC 107 ms
87,576 KB
testcase_36 AC 130 ms
90,760 KB
testcase_37 AC 115 ms
91,060 KB
testcase_38 AC 102 ms
86,908 KB
testcase_39 RE -
testcase_40 AC 127 ms
91,276 KB
testcase_41 AC 102 ms
86,888 KB
testcase_42 AC 155 ms
91,940 KB
testcase_43 AC 147 ms
92,000 KB
testcase_44 AC 101 ms
87,308 KB
testcase_45 AC 110 ms
86,672 KB
testcase_46 RE -
testcase_47 AC 113 ms
87,428 KB
testcase_48 RE -
testcase_49 RE -
testcase_50 AC 111 ms
86,876 KB
testcase_51 RE -
testcase_52 RE -
testcase_53 AC 126 ms
91,040 KB
testcase_54 AC 107 ms
86,964 KB
testcase_55 AC 138 ms
92,292 KB
testcase_56 AC 105 ms
87,252 KB
testcase_57 RE -
testcase_58 AC 159 ms
92,492 KB
testcase_59 AC 106 ms
86,992 KB
testcase_60 AC 150 ms
91,872 KB
testcase_61 RE -
testcase_62 RE -
testcase_63 AC 110 ms
87,340 KB
testcase_64 AC 104 ms
87,152 KB
testcase_65 RE -
testcase_66 AC 111 ms
87,468 KB
testcase_67 AC 108 ms
86,956 KB
testcase_68 AC 125 ms
91,068 KB
testcase_69 AC 116 ms
90,968 KB
testcase_70 AC 103 ms
86,892 KB
testcase_71 AC 125 ms
91,612 KB
testcase_72 AC 105 ms
87,108 KB
testcase_73 RE -
testcase_74 AC 111 ms
87,232 KB
testcase_75 AC 106 ms
87,300 KB
testcase_76 AC 115 ms
91,196 KB
testcase_77 AC 111 ms
86,864 KB
testcase_78 AC 118 ms
90,696 KB
testcase_79 AC 133 ms
91,076 KB
testcase_80 AC 118 ms
86,896 KB
testcase_81 AC 118 ms
91,072 KB
testcase_82 AC 117 ms
90,964 KB
testcase_83 AC 110 ms
86,700 KB
testcase_84 AC 106 ms
87,024 KB
testcase_85 AC 101 ms
87,136 KB
testcase_86 AC 121 ms
91,212 KB
testcase_87 AC 108 ms
87,076 KB
testcase_88 AC 104 ms
87,416 KB
testcase_89 AC 115 ms
90,984 KB
testcase_90 AC 110 ms
87,332 KB
testcase_91 AC 103 ms
87,104 KB
testcase_92 RE -
testcase_93 AC 104 ms
86,812 KB
testcase_94 AC 112 ms
87,396 KB
testcase_95 RE -
testcase_96 AC 155 ms
91,640 KB
testcase_97 AC 104 ms
86,776 KB
testcase_98 AC 101 ms
86,972 KB
testcase_99 AC 107 ms
86,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

while True:
    n=int(input())
    if n==-1:
        break
    for i in range(n):
    	h,p,x=map(int,input().split())
    print("S")
0