結果
問題 | No.35 タイパー高橋 |
ユーザー | Maboy |
提出日時 | 2021-06-02 15:33:35 |
言語 | Swift (5.10.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 363 bytes |
コンパイル時間 | 9,881 ms |
コンパイル使用メモリ | 129,004 KB |
実行使用メモリ | 9,472 KB |
最終ジャッジ日時 | 2024-11-15 07:57:38 |
合計ジャッジ時間 | 10,720 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 19 ms
9,344 KB |
ソースコード
var score = [0,0] let N = Int(readLine()!) for _ in 1...N!{ let input = readLine()?.split(separator: " ") let time = Int(input![0]) let string = input![1] let max = time! / (1000/12) let good = min( max, string.count) let bad = string.count - good score[0] += good score[1] += bad } print(score[0],terminator: " ") print(score[1])