結果

問題 No.1423 Triangle of Multiples
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2022-07-09 12:47:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 87,048 KB
実行使用メモリ 71,628 KB
最終ジャッジ日時 2023-08-28 23:48:51
合計ジャッジ時間 1,810 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

bufio_scanner = []


def main():
    t = int(fmt_scan())
    a, b, c = [int(fmt_scan()) for _ in range(3)]
    print(a, b, c)


def fmt_scan() -> str:
    sc = bufio_scanner
    if len(sc) == 0:
        for v in reversed(input().split()):
            sc.append(v)
    return sc.pop()


main()
0