結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー U SU S
提出日時 2021-01-22 21:34:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 87,132 KB
実行使用メモリ 102,332 KB
最終ジャッジ日時 2023-08-27 17:45:27
合計ジャッジ時間 7,653 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
73,296 KB
testcase_01 AC 118 ms
73,072 KB
testcase_02 AC 118 ms
73,072 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 116 ms
73,184 KB
testcase_08 AC 114 ms
73,412 KB
testcase_09 AC 115 ms
73,256 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 161 ms
94,240 KB
testcase_15 WA -
testcase_16 AC 140 ms
86,916 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 172 ms
101,488 KB
testcase_20 AC 153 ms
92,496 KB
testcase_21 AC 146 ms
90,304 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 177 ms
101,800 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 177 ms
102,044 KB
testcase_30 AC 178 ms
102,152 KB
testcase_31 AC 177 ms
101,848 KB
testcase_32 AC 178 ms
102,128 KB
testcase_33 WA -
testcase_34 AC 176 ms
101,860 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 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])


0