結果

問題 No.21 平均の差
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-11-19 20:40:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 593 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-05-05 10:13:29
合計ジャッジ時間 2,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
73,984 KB
testcase_01 AC 76 ms
73,856 KB
testcase_02 AC 77 ms
73,600 KB
testcase_03 AC 76 ms
73,856 KB
testcase_04 AC 77 ms
73,984 KB
testcase_05 AC 77 ms
73,856 KB
testcase_06 AC 76 ms
74,368 KB
testcase_07 AC 76 ms
74,112 KB
testcase_08 AC 77 ms
73,600 KB
testcase_09 AC 78 ms
73,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import sqlite3


def main():
    connection = sqlite3.connect(":memory:")
    cursor = connection.cursor()
    cursor.execute("CREATE TABLE sequence(item INTEGER)")
    n = int(input())
    _ = input()
    xs = ((int(input()), ) for _ in range(n))
    cursor.executemany("INSERT INTO sequence VALUES (?)", xs)
    connection.commit()
    max_x = cursor.execute("SELECT max(item) FROM sequence").fetchone()[0]
    min_x = cursor.execute("SELECT min(item) FROM sequence").fetchone()[0]
    print(max_x - min_x)
    connection.close()


if __name__ == '__main__':
    main()
0