結果

問題 No.571 3人兄弟(その2)
ユーザー matriematrie
提出日時 2020-12-05 11:40:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 10,640 KB
実行使用メモリ 29,704 KB
最終ジャッジ日時 2023-10-13 21:18:24
合計ジャッジ時間 3,035 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
29,600 KB
testcase_01 AC 135 ms
29,528 KB
testcase_02 AC 136 ms
29,704 KB
testcase_03 AC 139 ms
29,468 KB
testcase_04 AC 138 ms
29,528 KB
testcase_05 AC 139 ms
29,512 KB
testcase_06 AC 136 ms
29,540 KB
testcase_07 AC 136 ms
29,560 KB
testcase_08 AC 135 ms
29,592 KB
testcase_09 AC 136 ms
29,504 KB
testcase_10 AC 136 ms
29,512 KB
testcase_11 AC 136 ms
29,628 KB
testcase_12 AC 140 ms
29,616 KB
testcase_13 AC 134 ms
29,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy
l = [-eval(input().replace(' ',"00-")) for _ in range(3)]
for i in numpy.argsort(l):
	print("ABC"[i])
0