結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー googol_S0googol_S0
提出日時 2021-01-22 21:21:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 1,000 ms
コード長 99 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 76,724 KB
最終ジャッジ日時 2023-08-27 17:04:41
合計ジャッジ時間 6,099 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,332 KB
testcase_01 AC 75 ms
71,268 KB
testcase_02 AC 74 ms
71,012 KB
testcase_03 AC 74 ms
71,184 KB
testcase_04 AC 72 ms
71,300 KB
testcase_05 AC 72 ms
71,296 KB
testcase_06 AC 72 ms
71,240 KB
testcase_07 AC 75 ms
75,172 KB
testcase_08 AC 76 ms
75,524 KB
testcase_09 AC 74 ms
71,180 KB
testcase_10 AC 77 ms
75,212 KB
testcase_11 AC 74 ms
71,184 KB
testcase_12 AC 75 ms
75,168 KB
testcase_13 AC 87 ms
76,660 KB
testcase_14 AC 85 ms
76,596 KB
testcase_15 AC 79 ms
75,368 KB
testcase_16 AC 80 ms
75,588 KB
testcase_17 AC 86 ms
76,204 KB
testcase_18 AC 82 ms
76,364 KB
testcase_19 AC 89 ms
76,212 KB
testcase_20 AC 86 ms
76,280 KB
testcase_21 AC 83 ms
76,168 KB
testcase_22 AC 87 ms
76,724 KB
testcase_23 AC 88 ms
76,452 KB
testcase_24 AC 89 ms
76,496 KB
testcase_25 AC 88 ms
76,372 KB
testcase_26 AC 86 ms
76,476 KB
testcase_27 AC 89 ms
76,480 KB
testcase_28 AC 87 ms
76,244 KB
testcase_29 AC 89 ms
76,488 KB
testcase_30 AC 90 ms
76,352 KB
testcase_31 AC 90 ms
76,224 KB
testcase_32 AC 88 ms
76,288 KB
testcase_33 AC 88 ms
76,180 KB
testcase_34 AC 90 ms
76,460 KB
testcase_35 AC 73 ms
71,288 KB
testcase_36 AC 75 ms
71,296 KB
testcase_37 AC 74 ms
71,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
A,B=min(S),max(S)
if S.count(A)==1:
  print(S.index(A)+1,A)
else:
  print(S.index(B)+1,B)
0