結果

問題 No.571 3人兄弟(その2)
ユーザー matriematrie
提出日時 2020-12-05 11:40:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,156 KB
最終ジャッジ日時 2024-09-15 16:50:31
合計ジャッジ時間 9,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
43,772 KB
testcase_01 AC 528 ms
43,644 KB
testcase_02 AC 519 ms
43,776 KB
testcase_03 AC 524 ms
43,392 KB
testcase_04 AC 524 ms
44,156 KB
testcase_05 AC 520 ms
43,508 KB
testcase_06 AC 519 ms
43,528 KB
testcase_07 AC 517 ms
43,908 KB
testcase_08 AC 514 ms
43,784 KB
testcase_09 AC 522 ms
43,524 KB
testcase_10 AC 521 ms
43,384 KB
testcase_11 AC 517 ms
43,900 KB
testcase_12 AC 516 ms
43,884 KB
testcase_13 AC 526 ms
43,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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