結果

問題 No.570 3人兄弟(その1)
ユーザー matriematrie
提出日時 2020-11-28 09:41:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 10,672 KB
実行使用メモリ 29,644 KB
最終ジャッジ日時 2023-10-09 23:40:04
合計ジャッジ時間 3,888 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
29,548 KB
testcase_01 AC 141 ms
29,492 KB
testcase_02 AC 137 ms
29,596 KB
testcase_03 AC 135 ms
29,568 KB
testcase_04 AC 137 ms
29,644 KB
testcase_05 AC 136 ms
29,556 KB
testcase_06 AC 136 ms
29,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy
l = [int(input()) for _ in range(3)]
for i in [2,1,0]:
	print(['A','B','C'][numpy.argsort(l)[i]])
0