結果
問題 | No.146 試験監督(1) |
ユーザー | kichirb3 |
提出日時 | 2018-03-05 12:33:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 394 bytes |
コンパイル時間 | 80 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-19 19:28:18 |
合計ジャッジ時間 | 1,384 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
# -*- coding: utf-8 -*- """ No.146 試験監督(1) https://yukicoder.me/problems/no/146 """ import sys from sys import stdin input = stdin.readline def main(args): ans = 0 N = int(input()) for _ in range(N): C, D = map(int, input().split()) capacity = (C + 1) // 2 ans += capacity * D print(ans) if __name__ == '__main__': main(sys.argv[1:])