結果

問題 No.1423 Triangle of Multiples
ユーザー toshiro_yanagi
提出日時 2022-07-09 12:47:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-12-30 15:22:42
合計ジャッジ時間 1,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 4
権限があれば一括ダウンロードができます

ソースコード

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