結果
問題 | No.1362 [Zelkova 8th Tune] Black Sheep |
ユーザー | U S |
提出日時 | 2021-01-22 21:34:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 429 bytes |
コンパイル時間 | 430 ms |
コンパイル使用メモリ | 81,964 KB |
実行使用メモリ | 100,196 KB |
最終ジャッジ日時 | 2024-06-08 13:29:31 |
合計ジャッジ時間 | 5,017 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
60,288 KB |
testcase_01 | AC | 54 ms
59,904 KB |
testcase_02 | AC | 53 ms
60,032 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 53 ms
59,904 KB |
testcase_08 | AC | 53 ms
59,904 KB |
testcase_09 | AC | 53 ms
59,776 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 102 ms
94,940 KB |
testcase_15 | WA | - |
testcase_16 | AC | 82 ms
84,864 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 116 ms
99,108 KB |
testcase_20 | AC | 96 ms
90,240 KB |
testcase_21 | AC | 91 ms
88,192 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 117 ms
99,948 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 119 ms
99,564 KB |
testcase_30 | AC | 118 ms
99,824 KB |
testcase_31 | AC | 116 ms
100,088 KB |
testcase_32 | AC | 117 ms
99,820 KB |
testcase_33 | WA | - |
testcase_34 | AC | 115 ms
99,816 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
# import sys # input = sys.stdin.readline def mp():return map(int,input().split()) def lmp():return list(map(int,input().split())) import math import bisect from copy import deepcopy as dc from itertools import accumulate from collections import Counter, defaultdict, deque def ceil(U,V):return (U+V-1)//V def modf1(N,MOD):return (N-1)%MOD+1 s = list(input()) c = list(Counter(s).keys()) c.sort() print(s.index(c[0])+1, c[0])