結果

問題 No.851 テストケース
ユーザー square1001square1001
提出日時 2019-07-26 22:34:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 3,153 ms
コード長 255 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-02 08:00:22
合計ジャッジ時間 1,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
t = input().split(' ');
if len(t) == 3:
	print("\"assert\"")
else:
	p = list(map(int, t));
	x = int(p[0])
	y = int(input())
	z = int(input())
	a = [ x, y, z ]
	a.sort();
	if a[0] == a[1]:
		print(a[0] + a[1]);
	else:
		print(a[0] + a[2]);
0