結果
問題 | No.1423 Triangle of Multiples |
ユーザー | toshiro_yanagi |
提出日時 | 2022-07-09 12:47:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 293 bytes |
コンパイル時間 | 313 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 52,096 KB |
最終ジャッジ日時 | 2024-06-09 18:18:07 |
合計ジャッジ時間 | 1,760 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
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()