結果
問題 | No.1362 [Zelkova 8th Tune] Black Sheep |
ユーザー | U S |
提出日時 | 2021-01-22 21:34:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 429 bytes |
コンパイル時間 | 189 ms |
コンパイル使用メモリ | 81,996 KB |
実行使用メモリ | 100,224 KB |
最終ジャッジ日時 | 2024-12-27 22:01:23 |
合計ジャッジ時間 | 4,634 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
60,160 KB |
testcase_01 | AC | 51 ms
60,416 KB |
testcase_02 | AC | 53 ms
60,416 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 53 ms
60,800 KB |
testcase_08 | AC | 50 ms
60,288 KB |
testcase_09 | AC | 52 ms
60,544 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 103 ms
94,720 KB |
testcase_15 | WA | - |
testcase_16 | AC | 80 ms
84,992 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 116 ms
99,096 KB |
testcase_20 | AC | 91 ms
90,688 KB |
testcase_21 | AC | 91 ms
88,320 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 117 ms
99,936 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 112 ms
99,940 KB |
testcase_30 | AC | 116 ms
99,948 KB |
testcase_31 | AC | 114 ms
99,800 KB |
testcase_32 | AC | 117 ms
100,200 KB |
testcase_33 | WA | - |
testcase_34 | AC | 119 ms
100,068 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])