結果

問題 No.920 あかあお
ユーザー MaboyMaboy
提出日時 2021-06-18 20:57:44
言語 Swift
(5.10.0)
結果
TLE  
実行時間 -
コード長 172 bytes
コンパイル時間 8,993 ms
コンパイル使用メモリ 130,456 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-06-22 19:23:59
合計ジャッジ時間 12,939 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
14,592 KB
testcase_01 AC 7 ms
9,088 KB
testcase_02 AC 6 ms
9,088 KB
testcase_03 AC 7 ms
9,216 KB
testcase_04 AC 7 ms
9,216 KB
testcase_05 AC 7 ms
9,088 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

var z = readLine()!.split(separator: " ").map{Int($0)!}
for _ in 1...z[2]{
    if z[0] < z[1]{
        z[0] += 1
    }else{
        z[1] += 1
    }
}
print(z[0...1].min()!)
0