From 8ab37af2575e3ed3a6669452b85ffef7abdeb45c Mon Sep 17 00:00:00 2001 From: Pavel Kunyavskiy Date: Tue, 5 Sep 2023 16:15:17 +0200 Subject: [PATCH] Rework cds tests --- gradle/libs.versions.toml | 3 - src/cds/build.gradle.kts | 1 - .../kotlin/org/icpclive/cds/CdsLoadersTest.kt | 51 +- .../test/kotlin/org/icpclive/cds/approve.sh | 3 - src/cds/testData/loaders/ejudge.xml | 1260 ++ .../loaders/goldenData/clics202003.txt} | 0 .../loaders/goldenData/clics202207.txt} | 0 .../testData/loaders/goldenData/ejudge.txt | 18571 ++++++++++++++++ .../loaders/goldenData/pcms.txt} | 0 .../loaders/goldenData/pcmsIOI.txt} | 0 .../loaders/goldenData/testSys.txt} | 0 .../testSysWithAdvancedOverride.txt} | 0 12 files changed, 19872 insertions(+), 17 deletions(-) delete mode 100644 src/cds/src/test/kotlin/org/icpclive/cds/approve.sh create mode 100644 src/cds/testData/loaders/ejudge.xml rename src/cds/{src/test/kotlin/org/icpclive/cds/CdsLoadersTest.clics202003Test.approved.txt => testData/loaders/goldenData/clics202003.txt} (100%) rename src/cds/{src/test/kotlin/org/icpclive/cds/CdsLoadersTest.clics202207Test.approved.txt => testData/loaders/goldenData/clics202207.txt} (100%) create mode 100644 src/cds/testData/loaders/goldenData/ejudge.txt rename src/cds/{src/test/kotlin/org/icpclive/cds/CdsLoadersTest.pcmsTest.approved.txt => testData/loaders/goldenData/pcms.txt} (100%) rename src/cds/{src/test/kotlin/org/icpclive/cds/CdsLoadersTest.pcmsIOITest.approved.txt => testData/loaders/goldenData/pcmsIOI.txt} (100%) rename src/cds/{src/test/kotlin/org/icpclive/cds/CdsLoadersTest.testSys.approved.txt => testData/loaders/goldenData/testSys.txt} (100%) rename src/cds/{src/test/kotlin/org/icpclive/cds/CdsLoadersTest.testSysWithAdvancedOverride.approved.txt => testData/loaders/goldenData/testSysWithAdvancedOverride.txt} (100%) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7091f98e0..994557642 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -19,7 +19,6 @@ grpc-kotlin = "1.3.1" # https://github.com/grpc/grpc-kotlin dokka = "1.8.20" # https://github.com/Kotlin/dokka retrofit = "2.9.0" # https://mvnrepository.com/artifact/com.squareup.retrofit2/retrofit/2.9.0 json5 = "0.3.0" # https://github.com/xn32/json5k -approvaltests = "18.7.1" # https://github.com/approvals/ApprovalTests.Java [libraries] @@ -78,8 +77,6 @@ grpc-gen-kotlin = { version.ref = "grpc-kotlin", group = "io.grpc", name = "prot protobuf = { version.ref = "protobuf", group = "com.google.protobuf", name = "protobuf-kotlin" } protoc = { version.ref = "protobuf", group = "com.google.protobuf", name = "protoc" } -approvaltests = { version.ref = "approvaltests", group = "com.approvaltests", name = "approvaltests" } - [plugins] ktor = { id = "io.ktor.plugin", version.ref = "ktor" } diff --git a/src/cds/build.gradle.kts b/src/cds/build.gradle.kts index 95753e8b4..cf5bff72d 100644 --- a/src/cds/build.gradle.kts +++ b/src/cds/build.gradle.kts @@ -87,5 +87,4 @@ dependencies { implementation(projects.common) testImplementation(libs.kotlin.junit) - testImplementation(libs.approvaltests) } \ No newline at end of file diff --git a/src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.kt b/src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.kt index 29fa4442a..45cc23346 100644 --- a/src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.kt +++ b/src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.kt @@ -4,8 +4,6 @@ import kotlinx.coroutines.runBlocking import kotlinx.coroutines.withTimeout import kotlinx.serialization.encodeToString import kotlinx.serialization.json.Json -import org.approvaltests.Approvals -import org.approvaltests.core.Options import org.icpclive.api.ContestResultType import org.icpclive.api.tunning.* import org.icpclive.cds.adapters.applyAdvancedProperties @@ -13,14 +11,20 @@ import org.icpclive.cds.adapters.finalContestState import org.icpclive.cds.clics.FeedVersion import org.icpclive.cds.common.ContestParseResult import org.icpclive.cds.settings.* +import org.opentest4j.AssertionFailedError +import java.nio.file.Path import kotlin.test.Test import kotlin.text.Regex import kotlin.time.Duration.Companion.minutes -class CdsLoadersTest { +object CdsLoadersTest { + private val goldenDataDir = Path.of("").toAbsolutePath().resolve("testData").resolve("loaders").resolve("goldenData") + private val updateTestData = false + @Test - fun pcmsTest() { + fun pcms() { loaderTest( + goldenDataDir.resolve("pcms.txt"), PCMSSettings( url = "testData/loaders/pcms.xml" ) @@ -28,8 +32,9 @@ class CdsLoadersTest { } @Test - fun pcmsIOITest() { + fun pcmsIOI() { loaderTest( + goldenDataDir.resolve("pcmsIOI.txt"), PCMSSettings( resultType = ContestResultType.IOI, url = "testData/loaders/pcms-ioi.xml" @@ -37,10 +42,21 @@ class CdsLoadersTest { ) } + @Test + fun ejudge() { + loaderTest( + goldenDataDir.resolve("ejudge.txt"), + EjudgeSettings( + url = "testData/loaders/ejudge.xml" + ) + ) + } + @Test - fun clics202003Test() { + fun clics202003() { loaderTest( + goldenDataDir.resolve("clics202003.txt"), ClicsSettings( url = "testData/loaders/clics-2020-03", feedVersion = FeedVersion.`2020_03` @@ -49,8 +65,9 @@ class CdsLoadersTest { } @Test - fun clics202207Test() { + fun clics202207() { loaderTest( + goldenDataDir.resolve("clics202207.txt"), ClicsSettings( url = "testData/loaders/clics-2022-07", feedVersion = FeedVersion.`2022_07` @@ -61,6 +78,7 @@ class CdsLoadersTest { @Test fun testSys() { loaderTest( + goldenDataDir.resolve("testSys.txt"), TestSysSettings( url = "testData/loaders/testsys.dat" ) @@ -70,6 +88,7 @@ class CdsLoadersTest { @Test fun testSysWithAdvancedOverride() { loaderTest( + goldenDataDir.resolve("testSysWithAdvancedOverride.txt"), TestSysSettings( url = "testData/loaders/testsys.dat" ), @@ -100,7 +119,7 @@ class CdsLoadersTest { prettyPrint = true } - private fun loaderTest(args: CDSSettings, advanced: AdvancedProperties? = null) { + private fun loaderTest(expectedFile: Path, args: CDSSettings, advanced: AdvancedProperties? = null) { val loader = args.toFlow(emptyMap()) val result = runBlocking { val result = withTimeout(1.minutes) { @@ -124,7 +143,19 @@ class CdsLoadersTest { result } } - val options = Options() - Approvals.verify(json.encodeToString(result), options) + val actual = json.encodeToString(result) + val expected = expectedFile.toFile().takeIf { it.exists() }?.readText() ?: "" + if (actual != expected) { + if (updateTestData) { + expectedFile.toFile().printWriter().use { + it.print(actual) + } + } + throw AssertionFailedError( + "Actual result doesn't match expected in file ${expectedFile}", + expected, + actual, + ) + } } } \ No newline at end of file diff --git a/src/cds/src/test/kotlin/org/icpclive/cds/approve.sh b/src/cds/src/test/kotlin/org/icpclive/cds/approve.sh deleted file mode 100644 index b2edb64b6..000000000 --- a/src/cds/src/test/kotlin/org/icpclive/cds/approve.sh +++ /dev/null @@ -1,3 +0,0 @@ -for i in *.received.txt ; do - mv $i ${i/.received./.approved.} -done \ No newline at end of file diff --git a/src/cds/testData/loaders/ejudge.xml b/src/cds/testData/loaders/ejudge.xml new file mode 100644 index 000000000..1defeb1c1 --- /dev/null +++ b/src/cds/testData/loaders/ejudge.xml @@ -0,0 +1,1260 @@ + + + МКОШП 2022 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.clics202003Test.approved.txt b/src/cds/testData/loaders/goldenData/clics202003.txt similarity index 100% rename from src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.clics202003Test.approved.txt rename to src/cds/testData/loaders/goldenData/clics202003.txt diff --git a/src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.clics202207Test.approved.txt b/src/cds/testData/loaders/goldenData/clics202207.txt similarity index 100% rename from src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.clics202207Test.approved.txt rename to src/cds/testData/loaders/goldenData/clics202207.txt diff --git a/src/cds/testData/loaders/goldenData/ejudge.txt b/src/cds/testData/loaders/goldenData/ejudge.txt new file mode 100644 index 000000000..8f38e4a62 --- /dev/null +++ b/src/cds/testData/loaders/goldenData/ejudge.txt @@ -0,0 +1,18571 @@ +{ + "contestInfo": { + "name": "МКОШП 2022", + "status": "FINALIZED", + "resultType": "ICPC", + "startTimeUnixMs": 1666515600000, + "contestLengthMs": 18000000, + "freezeTimeMs": 14400000, + "problems": [ + { + "letter": "A", + "name": "Фальшивая стопка", + "id": 1, + "ordinal": 0, + "contestSystemId": "1" + }, + { + "letter": "B", + "name": "Лёша и чтение условий", + "id": 2, + "ordinal": 1, + "contestSystemId": "2" + }, + { + "letter": "C", + "name": "Пляж", + "id": 3, + "ordinal": 2, + "contestSystemId": "3" + }, + { + "letter": "D", + "name": "Факториальная делимость", + "id": 4, + "ordinal": 3, + "contestSystemId": "4" + }, + { + "letter": "E", + "name": "Самостоятельные деревья", + "id": 5, + "ordinal": 4, + "contestSystemId": "5" + }, + { + "letter": "F", + "name": "Сериал по Майнкрафту", + "id": 6, + "ordinal": 5, + "contestSystemId": "6" + }, + { + "letter": "G", + "name": "Split sort", + "id": 7, + "ordinal": 6, + "contestSystemId": "7" + }, + { + "letter": "H", + "name": "Башенки", + "id": 8, + "ordinal": 7, + "contestSystemId": "8" + }, + { + "letter": "I", + "name": "Нулевая сумма", + "id": 9, + "ordinal": 8, + "contestSystemId": "9" + }, + { + "letter": "J", + "name": "Прямоугольное дерево", + "id": 10, + "ordinal": 9, + "contestSystemId": "10" + }, + { + "letter": "K", + "name": "Не сортируй", + "id": 11, + "ordinal": 10, + "contestSystemId": "11" + }, + { + "letter": "L", + "name": "N станков", + "id": 12, + "ordinal": 11, + "contestSystemId": "12" + } + ], + "teams": [ + { + "id": 0, + "name": "1580-1 \"Трое Архонтов\" (Заварин 11, Смирнов 11, Ван 11)", + "shortName": "1580-1 \"Трое Архонтов\" (Заварин 11, Смирнов 11, Ван 11)", + "contestSystemId": "135350", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 1, + "name": "179 Random People (Авдеев 10, Дубко 10, Некрасов 9)", + "shortName": "179 Random People (Авдеев 10, Дубко 10, Некрасов 9)", + "contestSystemId": "135351", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 2, + "name": "57 \"Конские хомуты\" (Лосев 9, Алексеев 10, Семенюк 9)", + "shortName": "57 \"Конские хомуты\" (Лосев 9, Алексеев 10, Семенюк 9)", + "contestSystemId": "135352", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 3, + "name": "Котики МШП (Шумов 11, Вовк 11, Авдеева 11)", + "shortName": "Котики МШП (Шумов 11, Вовк 11, Авдеева 11)", + "contestSystemId": "135353", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 4, + "name": "МШП-3 Ромашка (Саляхов 8, Фешин 11, Чистяков 11)", + "shortName": "МШП-3 Ромашка (Саляхов 8, Фешин 11, Чистяков 11)", + "contestSystemId": "135354", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 5, + "name": "ФТЛ \"и что в итоге?\" (Черепанов 9, Загоровский 9, Архипов 8)", + "shortName": "ФТЛ \"и что в итоге?\" (Черепанов 9, Загоровский 9, Архипов 8)", + "contestSystemId": "135355", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 6, + "name": "179 \"По приказу генерала Емакса\" (Марусев 8, Мусатов 9, Самойлов 9)", + "shortName": "179 \"По приказу генерала Емакса\" (Марусев 8, Мусатов 9, Самойлов 9)", + "contestSystemId": "135356", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 7, + "name": "179-Л2Ш-Летово MBI (Артюхов 8, Бернадский 8, Мусихин 8)", + "shortName": "179-Л2Ш-Летово MBI (Артюхов 8, Бернадский 8, Мусихин 8)", + "contestSystemId": "135357", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 8, + "name": "57 \"Леоны\" (Салыгин 10, Шкулёва 10, Беляев 10)", + "shortName": "57 \"Леоны\" (Салыгин 10, Шкулёва 10, Беляев 10)", + "contestSystemId": "135358", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 9, + "name": "Л2Ш \"Индюк, Койот и Пингвин\" (Ларичев 11, Важенин 11, Волков 10)", + "shortName": "Л2Ш \"Индюк, Койот и Пингвин\" (Ларичев 11, Важенин 11, Волков 10)", + "contestSystemId": "135359", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 10, + "name": "СУНЦ \"Булат Ибрагимович\" (Лузгов 10, Галявиев 10, Прыгунов 10)", + "shortName": "СУНЦ \"Булат Ибрагимович\" (Лузгов 10, Галявиев 10, Прыгунов 10)", + "contestSystemId": "135360", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 11, + "name": "ФТЛ + СП ФМЛ \"Бородинςкий хλеб\" (Белецкий 11, Сушин 11, Воронин 11)", + "shortName": "ФТЛ + СП ФМЛ \"Бородинςкий хλеб\" (Белецкий 11, Сушин 11, Воронин 11)", + "contestSystemId": "135361", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 12, + "name": "179 + 2007 \"Rio de Janeiro\" (Солунов 11, Татаркин 11, Поляков 11)", + "shortName": "179 + 2007 \"Rio de Janeiro\" (Солунов 11, Татаркин 11, Поляков 11)", + "contestSystemId": "135362", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 13, + "name": "179+57+518 Блин, сложно (Пахомов 11, Козлов 11, Чернов 11)", + "shortName": "179+57+518 Блин, сложно (Пахомов 11, Козлов 11, Чернов 11)", + "contestSystemId": "135363", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 14, + "name": "57 + 2086 + Летово «Голубые береты» (Краснов 10, Пискарев 10, Егоров 10)", + "shortName": "57 + 2086 + Летово «Голубые береты» (Краснов 10, Пискарев 10, Егоров 10)", + "contestSystemId": "135364", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 15, + "name": "Л2Ш \"Фарфоровые джентельмены\" (Битюков 11, Синицын 11, Волков 11)", + "shortName": "Л2Ш \"Фарфоровые джентельмены\" (Битюков 11, Синицын 11, Волков 11)", + "contestSystemId": "135365", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 16, + "name": "СУНЦ \"Герои N\" (Ковырзин 11, Горбатенков 11, Рахметов 11)", + "shortName": "СУНЦ \"Герои N\" (Ковырзин 11, Горбатенков 11, Рахметов 11)", + "contestSystemId": "135366", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 17, + "name": "ФТЛ-1 \"Ладно да\" (Мансурова 11, Чашников 11, Останин 11)", + "shortName": "ФТЛ-1 \"Ладно да\" (Мансурова 11, Чашников 11, Останин 11)", + "contestSystemId": "135367", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 18, + "name": "179 абобры (Волошко 8, Бельских 7, Сацкий 9)", + "shortName": "179 абобры (Волошко 8, Бельских 7, Сацкий 9)", + "contestSystemId": "135368", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 19, + "name": "179+Воробьевы горы \"Редиска 4\" (Клейменов 10, Ильин 10, Мордакин 10)", + "shortName": "179+Воробьевы горы \"Редиска 4\" (Клейменов 10, Ильин 10, Мордакин 10)", + "contestSystemId": "135369", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 20, + "name": "57-√-1 Врата Штерна (Кузнецов 11, Евстигнеев 11, Калугин 11)", + "shortName": "57-√-1 Врата Штерна (Кузнецов 11, Евстигнеев 11, Калугин 11)", + "contestSystemId": "135370", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 21, + "name": "Л2Ш-444-17 \"Ледокол\" (Коробейников 9, Осипов 9, Лазарев 9)", + "shortName": "Л2Ш-444-17 \"Ледокол\" (Коробейников 9, Осипов 9, Лазарев 9)", + "contestSystemId": "135371", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 22, + "name": "СУНЦ \"Зачем?\" (Волков 10, Осокин 10, Белоусько 10)", + "shortName": "СУНЦ \"Зачем?\" (Волков 10, Осокин 10, Белоусько 10)", + "contestSystemId": "135372", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 23, + "name": "ФТЛ-3 “Sintec” (Доронин 10, Кобзев 10, Антонова 10)", + "shortName": "ФТЛ-3 “Sintec” (Доронин 10, Кобзев 10, Антонова 10)", + "contestSystemId": "135373", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 24, + "name": "179 бестиков дергея (Маляровский 11, Лупилцев 11, Орехов 11)", + "shortName": "179 бестиков дергея (Маляровский 11, Лупилцев 11, Орехов 11)", + "contestSystemId": "135374", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 25, + "name": "179+Летово+Силаэдр Процион (Устименко 8, Застрожная 8, Мухлисуллин 8)", + "shortName": "179+Летово+Силаэдр Процион (Устименко 8, Застрожная 8, Мухлисуллин 8)", + "contestSystemId": "135375", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 26, + "name": "57-19 “MK-37” (Сыздыков 10, Журавлев 10, Новгородцев 10)", + "shortName": "57-19 “MK-37” (Сыздыков 10, Журавлев 10, Новгородцев 10)", + "contestSystemId": "135376", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 27, + "name": "Л2Ш+1558+СУНЦ \"Три товарища без фантазии\" (Сергеев 10, Копылов 11, Кухаренко 10)", + "shortName": "Л2Ш+1558+СУНЦ \"Три товарища без фантазии\" (Сергеев 10, Копылов 11, Кухаренко 10)", + "contestSystemId": "135377", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 28, + "name": "СУНЦ \"Квадрат зайдет?\" (Боровлев 11, Сомкин 11, Баданов 11)", + "shortName": "СУНЦ \"Квадрат зайдет?\" (Боровлев 11, Сомкин 11, Баданов 11)", + "contestSystemId": "135378", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 29, + "name": "ФТЛ-8 Путешественники (Лещинский 10, Лязер 10, Фомин 10)", + "shortName": "ФТЛ-8 Путешественники (Лещинский 10, Лязер 10, Фомин 10)", + "contestSystemId": "135379", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 30, + "name": "179 Жёлтый кактус (Бурмистров 10, Шумилов 10, Шамсутдинов 10)", + "shortName": "179 Жёлтый кактус (Бурмистров 10, Шумилов 10, Шамсутдинов 10)", + "contestSystemId": "135380", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 31, + "name": "179+ЦПМ+СУНЦ \"К У П И Т Ь | ЫМ ИЛАБЛОД АРБУЗ\" (Возмилов 10, Терентьева 11, Матюпатенко 10)", + "shortName": "179+ЦПМ+СУНЦ \"К У П И Т Ь | ЫМ ИЛАБЛОД АРБУЗ\" (Возмилов 10, Терентьева 11, Матюпатенко 10)", + "contestSystemId": "135381", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 32, + "name": "57, Воробьевы горы \"10 негритят без права переписки\" (Кравченко 7, Балакин 8, Бурлаков 8)", + "shortName": "57, Воробьевы горы \"10 негритят без права переписки\" (Кравченко 7, Балакин 8, Бурлаков 8)", + "contestSystemId": "135382", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 33, + "name": "Л2Ш+57 Мейби бейби такая зайка (Степанов 11, Климчук 11, Васильев 11)", + "shortName": "Л2Ш+57 Мейби бейби такая зайка (Степанов 11, Климчук 11, Васильев 11)", + "contestSystemId": "135383", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 34, + "name": "СУНЦ \"Фан-клуб Анны Щербаковой\" (Горохов 11, Канухин 11, Первутинский 11)", + "shortName": "СУНЦ \"Фан-клуб Анны Щербаковой\" (Горохов 11, Канухин 11, Первутинский 11)", + "contestSystemId": "135384", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 35, + "name": "ЦПМ+ВШЭ \"Пылающие манулы\" (Вигалок 10, Калугин 10, Ефимов 10)", + "shortName": "ЦПМ+ВШЭ \"Пылающие манулы\" (Вигалок 10, Калугин 10, Ефимов 10)", + "contestSystemId": "135385", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 36, + "name": "179 Здравствуй, небо в облаках! (Черный 11, Громак 11, Устименко 10)", + "shortName": "179 Здравствуй, небо в облаках! (Черный 11, Громак 11, Устименко 10)", + "contestSystemId": "135386", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 37, + "name": "2007 \"Random name\" (Елисеев 11, Маланьин 11, Лишманова 10)", + "shortName": "2007 \"Random name\" (Елисеев 11, Маланьин 11, Лишманова 10)", + "contestSystemId": "135387", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 38, + "name": "57, ШЦПМ, Летово \"Клуб ценителей фонка\" (Валиуллин 9, Шейкис 9, Адаменко 9)", + "shortName": "57, ШЦПМ, Летово \"Клуб ценителей фонка\" (Валиуллин 9, Шейкис 9, Адаменко 9)", + "contestSystemId": "135388", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 39, + "name": "Летово \"123\" (Грицаев 10, Курлаев 10, Яременко 10)", + "shortName": "Летово \"123\" (Грицаев 10, Курлаев 10, Яременко 10)", + "contestSystemId": "135389", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 40, + "name": "СУНЦ \"Meow\" (Алексеев 11, Рагулин 11, Зотова 11)", + "shortName": "СУНЦ \"Meow\" (Алексеев 11, Рагулин 11, Зотова 11)", + "contestSystemId": "135390", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 41, + "name": "179 сладкие (Сергиенко 11, Губарев 11, Бурков 11)", + "shortName": "179 сладкие (Сергиенко 11, Губарев 11, Бурков 11)", + "contestSystemId": "135391", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 42, + "name": "2007+57 дружки-пирожки (Душенков 10, Дрожецкий 10, Скрипник 10)", + "shortName": "2007+57 дружки-пирожки (Душенков 10, Дрожецкий 10, Скрипник 10)", + "contestSystemId": "135392", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 43, + "name": "57+Л2Ш \"No chances, they are asians\" (Насретдинов 10, Крылыков 10, Хо 10)", + "shortName": "57+Л2Ш \"No chances, they are asians\" (Насретдинов 10, Крылыков 10, Хо 10)", + "contestSystemId": "135393", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 44, + "name": "Летово \"кислые мармеладки\" (Макнил 9, Равнушкин 9, Громыко 9)", + "shortName": "Летово \"кислые мармеладки\" (Макнил 9, Равнушкин 9, Громыко 9)", + "contestSystemId": "135394", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 45, + "name": "СУНЦ %team_name% (Михайлов 11, Ларин 11, Вараксин 11)", + "shortName": "СУНЦ %team_name% (Михайлов 11, Ларин 11, Вараксин 11)", + "contestSystemId": "135395", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 46, + "name": "179 Ущемлённые уточки (Черников 9, Маевский 9, Малышев 9)", + "shortName": "179 Ущемлённые уточки (Черников 9, Маевский 9, Малышев 9)", + "contestSystemId": "135396", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 47, + "name": "2086-1 \"Хеши в толстовке\" (Редько 10, Илаев 10, Иванов 10)", + "shortName": "2086-1 \"Хеши в толстовке\" (Редько 10, Илаев 10, Иванов 10)", + "contestSystemId": "135397", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 48, + "name": "57+ЦПМ Джаханпахлаван (Янбухтин 10, Жиляев 10, Медведев 10)", + "shortName": "57+ЦПМ Джаханпахлаван (Янбухтин 10, Жиляев 10, Медведев 10)", + "contestSystemId": "135398", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 49, + "name": "Летово \"Стардасты\" (Акулов 9, Личманов 9, Хазеев 9)", + "shortName": "Летово \"Стардасты\" (Акулов 9, Личманов 9, Хазеев 9)", + "contestSystemId": "135399", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 50, + "name": "СУНЦ Бум зука искряка (Никифоров 10, Газизов 10, Жуланов 10)", + "shortName": "СУНЦ Бум зука искряка (Никифоров 10, Газизов 10, Жуланов 10)", + "contestSystemId": "135400", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 51, + "name": "179 IQ (Шиловский 9, Чуркина 9, Турундаев 9)", + "shortName": "179 IQ (Шиловский 9, Чуркина 9, Турундаев 9)", + "contestSystemId": "135401", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 52, + "name": "57 \"2^82589933 - 1\" (Чистяков 10, Хесин 10, Яковлев 10)", + "shortName": "57 \"2^82589933 - 1\" (Чистяков 10, Хесин 10, Яковлев 10)", + "contestSystemId": "135402", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 53, + "name": "Акулы МШП (Широковских 11, Паркина 11, Сильвестров 11)", + "shortName": "Акулы МШП (Широковских 11, Паркина 11, Сильвестров 11)", + "contestSystemId": "135403", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 54, + "name": "Летово-1 \"Их было трое\" (Маглыш 10, Лобанов 9, Колобаев 11)", + "shortName": "Летово-1 \"Их было трое\" (Маглыш 10, Лобанов 9, Колобаев 11)", + "contestSystemId": "135404", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + }, + { + "id": 55, + "name": "Три лицея, \"Попытка - не пытка\" (Гомзин 8, Шарапов 8, Алтынов 9)", + "shortName": "Три лицея, \"Попытка - не пытка\" (Гомзин 8, Шарапов 8, Алтынов 9)", + "contestSystemId": "135405", + "groups": [ + ], + "hashTag": null, + "medias": { + }, + "isHidden": false, + "isOutOfContest": false, + "organizationId": null + } + ], + "groups": [ + ], + "organizations": [ + ], + "penaltyRoundingMode": "each_submission_down_to_minute" + }, + "runs": [ + { + "id": 216, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 4, + "time": 161087 + }, + { + "id": 217, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 9, + "time": 290473 + }, + { + "id": 218, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 39, + "time": 327417 + }, + { + "id": 219, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 44, + "time": 369304 + }, + { + "id": 220, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 44, + "time": 400306 + }, + { + "id": 221, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 34, + "time": 406143 + }, + { + "id": 222, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 29, + "time": 416242 + }, + { + "id": 223, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 54, + "time": 416884 + }, + { + "id": 224, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 36, + "time": 425828 + }, + { + "id": 225, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 32, + "time": 523597 + }, + { + "id": 226, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 14, + "time": 564439 + }, + { + "id": 227, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 54, + "time": 574801 + }, + { + "id": 228, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 41, + "time": 601151 + }, + { + "id": 229, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 33, + "time": 606632 + }, + { + "id": 230, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 19, + "time": 619145 + }, + { + "id": 231, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 33, + "time": 624968 + }, + { + "id": 232, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 31, + "time": 641523 + }, + { + "id": 233, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 9, + "time": 666179 + }, + { + "id": 234, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 667799 + }, + { + "id": 235, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 679291 + }, + { + "id": 236, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 11, + "time": 703112 + }, + { + "id": 237, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 35, + "time": 717451 + }, + { + "id": 238, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 19, + "time": 717756 + }, + { + "id": 239, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 30, + "time": 718268 + }, + { + "id": 240, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 49, + "time": 738448 + }, + { + "id": 241, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 33, + "time": 739426 + }, + { + "id": 242, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 43, + "time": 742383 + }, + { + "id": 243, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 749633 + }, + { + "id": 244, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 10, + "time": 806428 + }, + { + "id": 245, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 41, + "time": 826040 + }, + { + "id": 246, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 8, + "time": 850326 + }, + { + "id": 247, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 3, + "time": 872246 + }, + { + "id": 248, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 49, + "time": 905814 + }, + { + "id": 249, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 36, + "time": 910882 + }, + { + "id": 250, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 20, + "time": 932188 + }, + { + "id": 251, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 42, + "time": 947771 + }, + { + "id": 252, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 33, + "time": 948114 + }, + { + "id": 253, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 32, + "time": 959484 + }, + { + "id": 254, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 9, + "time": 973214 + }, + { + "id": 255, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 50, + "time": 1007755 + }, + { + "id": 256, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 14, + "time": 1016018 + }, + { + "id": 257, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 18, + "time": 1028817 + }, + { + "id": 258, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 30, + "time": 1038933 + }, + { + "id": 259, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 12, + "time": 1049174 + }, + { + "id": 260, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 18, + "time": 1061576 + }, + { + "id": 261, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 51, + "time": 1061952 + }, + { + "id": 262, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 30, + "time": 1078621 + }, + { + "id": 263, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 45, + "time": 1092267 + }, + { + "id": 264, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 18, + "time": 1105666 + }, + { + "id": 265, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 52, + "time": 1110823 + }, + { + "id": 266, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 40, + "time": 1135882 + }, + { + "id": 267, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 53, + "time": 1159470 + }, + { + "id": 268, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 18, + "time": 1191396 + }, + { + "id": 269, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 0, + "time": 1208254 + }, + { + "id": 270, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 33, + "time": 1212926 + }, + { + "id": 271, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 31, + "time": 1225061 + }, + { + "id": 272, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 2, + "time": 1227119 + }, + { + "id": 273, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 44, + "time": 1227805 + }, + { + "id": 274, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 51, + "time": 1236963 + }, + { + "id": 275, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 49, + "time": 1243417 + }, + { + "id": 276, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 3, + "time": 1252844 + }, + { + "id": 277, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 52, + "time": 1269622 + }, + { + "id": 278, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 8, + "time": 1305154 + }, + { + "id": 279, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 38, + "time": 1313755 + }, + { + "id": 280, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 51, + "time": 1317812 + }, + { + "id": 281, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 34, + "time": 1332493 + }, + { + "id": 282, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 25, + "time": 1340975 + }, + { + "id": 283, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 54, + "time": 1353962 + }, + { + "id": 284, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 30, + "time": 1383714 + }, + { + "id": 285, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 1384298 + }, + { + "id": 286, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 41, + "time": 1401863 + }, + { + "id": 287, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 25, + "time": 1403931 + }, + { + "id": 288, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 14, + "time": 1447557 + }, + { + "id": 289, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 21, + "time": 1472519 + }, + { + "id": 290, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 37, + "time": 1479326 + }, + { + "id": 291, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 9, + "time": 1486628 + }, + { + "id": 292, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 50, + "time": 1495588 + }, + { + "id": 293, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 13, + "time": 1515785 + }, + { + "id": 294, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 45, + "time": 1535922 + }, + { + "id": 295, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 51, + "time": 1542546 + }, + { + "id": 296, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 36, + "time": 1600629 + }, + { + "id": 297, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 30, + "time": 1635586 + }, + { + "id": 298, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 17, + "time": 1643798 + }, + { + "id": 299, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 8, + "time": 1646439 + }, + { + "id": 300, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 24, + "time": 1654329 + }, + { + "id": 301, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 4, + "time": 1677411 + }, + { + "id": 302, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 38, + "time": 1704506 + }, + { + "id": 303, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 1722649 + }, + { + "id": 304, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 42, + "time": 1767775 + }, + { + "id": 305, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 10, + "time": 1803214 + }, + { + "id": 306, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 29, + "time": 1803704 + }, + { + "id": 307, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 38, + "time": 1822705 + }, + { + "id": 308, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 54, + "time": 1828352 + }, + { + "id": 309, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 54, + "time": 1856313 + }, + { + "id": 310, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 49, + "time": 1865641 + }, + { + "id": 311, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 6, + "time": 1883859 + }, + { + "id": 312, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 24, + "time": 1903031 + }, + { + "id": 313, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 16, + "time": 1909361 + }, + { + "id": 314, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 28, + "time": 1910869 + }, + { + "id": 315, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 46, + "time": 1922488 + }, + { + "id": 316, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 45, + "time": 1923166 + }, + { + "id": 317, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 25, + "time": 1928005 + }, + { + "id": 318, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 11, + "time": 1929679 + }, + { + "id": 319, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 13, + "time": 1935976 + }, + { + "id": 320, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 43, + "time": 1941021 + }, + { + "id": 321, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 1943411 + }, + { + "id": 322, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 34, + "time": 1945107 + }, + { + "id": 323, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 44, + "time": 1947464 + }, + { + "id": 324, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 41, + "time": 1951059 + }, + { + "id": 325, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 39, + "time": 1964322 + }, + { + "id": 326, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 44, + "time": 1970112 + }, + { + "id": 327, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 7, + "time": 1972785 + }, + { + "id": 328, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 12, + "time": 1979947 + }, + { + "id": 329, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 37, + "time": 1994479 + }, + { + "id": 330, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 2000284 + }, + { + "id": 331, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 4, + "time": 2022207 + }, + { + "id": 332, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 35, + "time": 2077268 + }, + { + "id": 333, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 11, + "time": 2079226 + }, + { + "id": 334, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 20, + "time": 2089491 + }, + { + "id": 335, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 5, + "time": 2098690 + }, + { + "id": 336, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 15, + "time": 2099271 + }, + { + "id": 337, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 4, + "time": 2105118 + }, + { + "id": 338, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 19, + "time": 2108932 + }, + { + "id": 339, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 53, + "time": 2110920 + }, + { + "id": 340, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 50, + "time": 2111529 + }, + { + "id": 341, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 54, + "time": 2196848 + }, + { + "id": 342, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 1, + "time": 2218374 + }, + { + "id": 343, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 54, + "time": 2233302 + }, + { + "id": 344, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 41, + "time": 2258990 + }, + { + "id": 345, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 31, + "time": 2261099 + }, + { + "id": 346, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 2262289 + }, + { + "id": 347, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 34, + "time": 2275468 + }, + { + "id": 348, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 17, + "time": 2279551 + }, + { + "id": 349, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 2, + "time": 2295277 + }, + { + "id": 350, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 4, + "time": 2308073 + }, + { + "id": 351, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 47, + "time": 2308658 + }, + { + "id": 352, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 38, + "time": 2312149 + }, + { + "id": 353, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 35, + "time": 2324966 + }, + { + "id": 354, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 24, + "time": 2405784 + }, + { + "id": 355, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 48, + "time": 2417738 + }, + { + "id": 356, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 50, + "time": 2417845 + }, + { + "id": 357, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 33, + "time": 2429511 + }, + { + "id": 358, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 48, + "time": 2435174 + }, + { + "id": 359, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 36, + "time": 2441776 + }, + { + "id": 360, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 9, + "time": 2468689 + }, + { + "id": 361, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 11, + "time": 2477539 + }, + { + "id": 362, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 32, + "time": 2491868 + }, + { + "id": 363, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 1, + "time": 2507679 + }, + { + "id": 364, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 2, + "time": 2508840 + }, + { + "id": 365, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 18, + "time": 2527407 + }, + { + "id": 366, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 12, + "time": 2532512 + }, + { + "id": 367, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 9, + "time": 2544960 + }, + { + "id": 368, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 15, + "time": 2562811 + }, + { + "id": 369, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 21, + "time": 2565477 + }, + { + "id": 370, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 40, + "time": 2591049 + }, + { + "id": 371, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 4, + "time": 2618678 + }, + { + "id": 372, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 23, + "time": 2619278 + }, + { + "id": 373, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 54, + "time": 2656995 + }, + { + "id": 374, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 54, + "time": 2676068 + }, + { + "id": 375, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 27, + "time": 2689209 + }, + { + "id": 376, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 9, + "time": 2696051 + }, + { + "id": 377, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 54, + "time": 2709605 + }, + { + "id": 378, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 15, + "time": 2711168 + }, + { + "id": 379, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 40, + "time": 2717660 + }, + { + "id": 380, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 13, + "time": 2720185 + }, + { + "id": 381, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 13, + "time": 2732343 + }, + { + "id": 382, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 42, + "time": 2760377 + }, + { + "id": 383, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 2775116 + }, + { + "id": 384, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 34, + "time": 2817890 + }, + { + "id": 385, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 50, + "time": 2823975 + }, + { + "id": 386, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 38, + "time": 2845852 + }, + { + "id": 387, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 54, + "time": 2847164 + }, + { + "id": 388, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 9, + "time": 2849732 + }, + { + "id": 389, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 28, + "time": 2870166 + }, + { + "id": 390, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 45, + "time": 2871708 + }, + { + "id": 391, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 48, + "time": 2934887 + }, + { + "id": 392, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 2945885 + }, + { + "id": 393, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 4, + "time": 2986932 + }, + { + "id": 394, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 54, + "time": 3004229 + }, + { + "id": 395, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 46, + "time": 3079451 + }, + { + "id": 396, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 48, + "time": 3087961 + }, + { + "id": 397, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 3093109 + }, + { + "id": 398, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 14, + "time": 3096419 + }, + { + "id": 399, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 39, + "time": 3117792 + }, + { + "id": 400, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 51, + "time": 3118652 + }, + { + "id": 401, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 20, + "time": 3144114 + }, + { + "id": 402, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 7, + "time": 3149013 + }, + { + "id": 403, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 38, + "time": 3164613 + }, + { + "id": 404, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 26, + "time": 3185356 + }, + { + "id": 405, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 2, + "time": 3216842 + }, + { + "id": 406, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 37, + "time": 3220385 + }, + { + "id": 407, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 52, + "time": 3308898 + }, + { + "id": 408, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 14, + "time": 3317256 + }, + { + "id": 409, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 55, + "time": 3331601 + }, + { + "id": 410, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 40, + "time": 3336461 + }, + { + "id": 411, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 33, + "time": 3337757 + }, + { + "id": 412, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 21, + "time": 3377714 + }, + { + "id": 413, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 0, + "time": 3403694 + }, + { + "id": 414, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 15, + "time": 3414040 + }, + { + "id": 415, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 38, + "time": 3440137 + }, + { + "id": 416, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 13, + "time": 3440362 + }, + { + "id": 417, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 36, + "time": 3460052 + }, + { + "id": 418, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 47, + "time": 3460471 + }, + { + "id": 419, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 10, + "time": 3461784 + }, + { + "id": 420, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 41, + "time": 3501931 + }, + { + "id": 421, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 47, + "time": 3507445 + }, + { + "id": 422, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 27, + "time": 3519547 + }, + { + "id": 423, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 42, + "time": 3520298 + }, + { + "id": 424, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 41, + "time": 3529855 + }, + { + "id": 425, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 27, + "time": 3548314 + }, + { + "id": 426, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 47, + "time": 3567445 + }, + { + "id": 427, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 31, + "time": 3574523 + }, + { + "id": 428, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 25, + "time": 3583980 + }, + { + "id": 429, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 20, + "time": 3596005 + }, + { + "id": 430, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 32, + "time": 3636142 + }, + { + "id": 431, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 7, + "time": 3636762 + }, + { + "id": 432, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 3654552 + }, + { + "id": 433, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 15, + "time": 3655287 + }, + { + "id": 434, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 31, + "time": 3656844 + }, + { + "id": 435, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 13, + "time": 3662081 + }, + { + "id": 436, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 2, + "time": 3673669 + }, + { + "id": 437, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 51, + "time": 3689549 + }, + { + "id": 438, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 6, + "time": 3690488 + }, + { + "id": 439, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 32, + "time": 3693194 + }, + { + "id": 440, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 5, + "time": 3708108 + }, + { + "id": 441, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 13, + "time": 3717198 + }, + { + "id": 442, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 15, + "time": 3786212 + }, + { + "id": 443, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 50, + "time": 3860972 + }, + { + "id": 444, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 23, + "time": 3869323 + }, + { + "id": 445, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 54, + "time": 3897085 + }, + { + "id": 446, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 36, + "time": 3904056 + }, + { + "id": 447, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 24, + "time": 3911907 + }, + { + "id": 448, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 46, + "time": 3954199 + }, + { + "id": 449, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 2, + "time": 3960277 + }, + { + "id": 450, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 54, + "time": 3964188 + }, + { + "id": 451, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 19, + "time": 3979663 + }, + { + "id": 452, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 15, + "time": 4000010 + }, + { + "id": 453, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 8, + "time": 4029917 + }, + { + "id": 454, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 20, + "time": 4046011 + }, + { + "id": 455, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 4077268 + }, + { + "id": 456, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 0, + "time": 4098908 + }, + { + "id": 457, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 0, + "time": 4107226 + }, + { + "id": 458, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 38, + "time": 4108647 + }, + { + "id": 459, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 1, + "time": 4115776 + }, + { + "id": 460, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 4142228 + }, + { + "id": 461, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 6, + "time": 4173000 + }, + { + "id": 462, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 4195017 + }, + { + "id": 463, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 23, + "time": 4227684 + }, + { + "id": 464, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 37, + "time": 4229649 + }, + { + "id": 465, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 4239287 + }, + { + "id": 466, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 24, + "time": 4256268 + }, + { + "id": 467, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 48, + "time": 4273260 + }, + { + "id": 468, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 23, + "time": 4282637 + }, + { + "id": 469, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 4283569 + }, + { + "id": 470, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 15, + "time": 4288337 + }, + { + "id": 471, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 17, + "time": 4336421 + }, + { + "id": 472, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 44, + "time": 4344049 + }, + { + "id": 473, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 46, + "time": 4344784 + }, + { + "id": 474, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 47, + "time": 4353341 + }, + { + "id": 475, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 25, + "time": 4385481 + }, + { + "id": 476, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 42, + "time": 4399958 + }, + { + "id": 477, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 44, + "time": 4411308 + }, + { + "id": 478, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 4490936 + }, + { + "id": 479, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 4502213 + }, + { + "id": 480, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 1, + "time": 4553825 + }, + { + "id": 481, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 23, + "time": 4565647 + }, + { + "id": 482, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 26, + "time": 4566433 + }, + { + "id": 483, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 45, + "time": 4585327 + }, + { + "id": 484, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 40, + "time": 4611690 + }, + { + "id": 485, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 37, + "time": 4620716 + }, + { + "id": 486, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 3, + "time": 4623566 + }, + { + "id": 487, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 3, + "time": 4653877 + }, + { + "id": 488, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 40, + "time": 4666261 + }, + { + "id": 489, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 48, + "time": 4681682 + }, + { + "id": 490, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 8, + "time": 4716052 + }, + { + "id": 491, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 23, + "time": 4748656 + }, + { + "id": 492, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 0, + "time": 4771927 + }, + { + "id": 493, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 41, + "time": 4782480 + }, + { + "id": 494, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 42, + "time": 4794135 + }, + { + "id": 495, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 15, + "time": 4836857 + }, + { + "id": 496, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 34, + "time": 4879118 + }, + { + "id": 497, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 40, + "time": 4957283 + }, + { + "id": 498, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 5, + "time": 4996737 + }, + { + "id": 499, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 9, + "time": 5017623 + }, + { + "id": 500, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 25, + "time": 5032072 + }, + { + "id": 501, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 41, + "time": 5039059 + }, + { + "id": 502, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 53, + "time": 5058084 + }, + { + "id": 503, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 5132306 + }, + { + "id": 504, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 29, + "time": 5200862 + }, + { + "id": 505, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 26, + "time": 5213319 + }, + { + "id": 506, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 52, + "time": 5215829 + }, + { + "id": 507, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 5233042 + }, + { + "id": 508, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 5261081 + }, + { + "id": 509, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 5280694 + }, + { + "id": 510, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 5290629 + }, + { + "id": 511, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 49, + "time": 5298440 + }, + { + "id": 512, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 48, + "time": 5313243 + }, + { + "id": 513, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 2, + "time": 5318372 + }, + { + "id": 514, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 5336574 + }, + { + "id": 515, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 31, + "time": 5403494 + }, + { + "id": 516, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 42, + "time": 5437699 + }, + { + "id": 517, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 27, + "time": 5510446 + }, + { + "id": 518, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 34, + "time": 5514331 + }, + { + "id": 519, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 27, + "time": 5545271 + }, + { + "id": 520, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 30, + "time": 5560018 + }, + { + "id": 521, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 45, + "time": 5582262 + }, + { + "id": 522, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 34, + "time": 5606364 + }, + { + "id": 523, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 35, + "time": 5643340 + }, + { + "id": 524, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 20, + "time": 5668673 + }, + { + "id": 525, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 30, + "time": 5681659 + }, + { + "id": 526, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 43, + "time": 5837028 + }, + { + "id": 527, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 40, + "time": 5848310 + }, + { + "id": 528, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 41, + "time": 5863292 + }, + { + "id": 529, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 29, + "time": 5877032 + }, + { + "id": 530, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 21, + "time": 5879756 + }, + { + "id": 531, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 53, + "time": 5900505 + }, + { + "id": 532, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 22, + "time": 5905924 + }, + { + "id": 533, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 2, + "time": 5962249 + }, + { + "id": 534, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 45, + "time": 5963974 + }, + { + "id": 535, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 49, + "time": 5978984 + }, + { + "id": 536, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 14, + "time": 5995072 + }, + { + "id": 537, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 49, + "time": 6011056 + }, + { + "id": 538, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 49, + "time": 6044277 + }, + { + "id": 539, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 47, + "time": 6059045 + }, + { + "id": 540, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 18, + "time": 6079674 + }, + { + "id": 541, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 14, + "time": 6085197 + }, + { + "id": 542, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 49, + "time": 6089343 + }, + { + "id": 543, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 6130596 + }, + { + "id": 544, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 28, + "time": 6137586 + }, + { + "id": 545, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 53, + "time": 6161349 + }, + { + "id": 546, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 13, + "time": 6163840 + }, + { + "id": 547, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 1, + "time": 6186536 + }, + { + "id": 548, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 6231760 + }, + { + "id": 549, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 1, + "time": 6281995 + }, + { + "id": 550, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 40, + "time": 6283718 + }, + { + "id": 551, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 28, + "time": 6310516 + }, + { + "id": 552, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 9, + "time": 6326470 + }, + { + "id": 553, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 15, + "time": 6349084 + }, + { + "id": 554, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 48, + "time": 6353664 + }, + { + "id": 555, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 0, + "time": 6372407 + }, + { + "id": 556, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 33, + "time": 6403020 + }, + { + "id": 557, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 22, + "time": 6428699 + }, + { + "id": 558, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 38, + "time": 6436523 + }, + { + "id": 559, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 6467105 + }, + { + "id": 560, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 9, + "time": 6478060 + }, + { + "id": 561, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 26, + "time": 6489287 + }, + { + "id": 562, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 43, + "time": 6504580 + }, + { + "id": 563, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 9, + "time": 6505633 + }, + { + "id": 564, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 8, + "time": 6529732 + }, + { + "id": 565, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 52, + "time": 6545560 + }, + { + "id": 566, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 51, + "time": 6555006 + }, + { + "id": 567, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 55, + "time": 6555047 + }, + { + "id": 568, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 55, + "time": 6639504 + }, + { + "id": 569, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 9, + "time": 6651914 + }, + { + "id": 570, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 45, + "time": 6669041 + }, + { + "id": 571, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 45, + "time": 6688026 + }, + { + "id": 572, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 15, + "time": 6703414 + }, + { + "id": 573, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 11, + "time": 6709560 + }, + { + "id": 574, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 33, + "time": 6715840 + }, + { + "id": 575, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 24, + "time": 6740112 + }, + { + "id": 576, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 40, + "time": 6766760 + }, + { + "id": 577, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 51, + "time": 6791335 + }, + { + "id": 578, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 12, + "time": 6812643 + }, + { + "id": 579, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 15, + "time": 6818735 + }, + { + "id": 580, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 45, + "time": 6819984 + }, + { + "id": 581, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 6, + "time": 6855291 + }, + { + "id": 582, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 6860107 + }, + { + "id": 583, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 46, + "time": 6894508 + }, + { + "id": 584, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 7, + "time": 6898282 + }, + { + "id": 585, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 47, + "time": 6921187 + }, + { + "id": 586, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 13, + "time": 6962804 + }, + { + "id": 587, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 26, + "time": 6972390 + }, + { + "id": 588, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 46, + "time": 6976906 + }, + { + "id": 589, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 3, + "time": 7042899 + }, + { + "id": 590, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 5, + "time": 7059724 + }, + { + "id": 591, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 7066577 + }, + { + "id": 592, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 7110031 + }, + { + "id": 593, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 5, + "time": 7148885 + }, + { + "id": 594, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 7, + "time": 7150007 + }, + { + "id": 595, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 45, + "time": 7151373 + }, + { + "id": 596, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 7253712 + }, + { + "id": 597, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 20, + "time": 7268494 + }, + { + "id": 598, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 36, + "time": 7342941 + }, + { + "id": 599, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 31, + "time": 7372106 + }, + { + "id": 600, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 7395943 + }, + { + "id": 601, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 38, + "time": 7413659 + }, + { + "id": 602, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 7438182 + }, + { + "id": 603, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 33, + "time": 7475693 + }, + { + "id": 604, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 36, + "time": 7479852 + }, + { + "id": 605, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 50, + "time": 7496799 + }, + { + "id": 606, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 40, + "time": 7498636 + }, + { + "id": 607, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 14, + "time": 7550098 + }, + { + "id": 608, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 26, + "time": 7559195 + }, + { + "id": 609, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 31, + "time": 7587832 + }, + { + "id": 610, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 10, + "time": 7597418 + }, + { + "id": 611, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 27, + "time": 7606999 + }, + { + "id": 612, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 54, + "time": 7627747 + }, + { + "id": 613, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 49, + "time": 7628796 + }, + { + "id": 614, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 30, + "time": 7665387 + }, + { + "id": 615, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 30, + "time": 7698306 + }, + { + "id": 616, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 27, + "time": 7715412 + }, + { + "id": 617, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 54, + "time": 7741138 + }, + { + "id": 618, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 19, + "time": 7745022 + }, + { + "id": 619, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 7763394 + }, + { + "id": 620, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 27, + "time": 7819677 + }, + { + "id": 621, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 7895448 + }, + { + "id": 622, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 30, + "time": 7900740 + }, + { + "id": 623, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 43, + "time": 7913284 + }, + { + "id": 624, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 7926568 + }, + { + "id": 625, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 43, + "time": 7944924 + }, + { + "id": 626, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 31, + "time": 7956668 + }, + { + "id": 627, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 7958655 + }, + { + "id": 628, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 7, + "time": 7963954 + }, + { + "id": 629, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 9, + "time": 7970749 + }, + { + "id": 630, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 7974441 + }, + { + "id": 631, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 29, + "time": 7979078 + }, + { + "id": 632, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 15, + "time": 7983172 + }, + { + "id": 633, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 7996177 + }, + { + "id": 634, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 8010052 + }, + { + "id": 635, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 30, + "time": 8018083 + }, + { + "id": 636, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 8027675 + }, + { + "id": 637, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 1, + "time": 8031060 + }, + { + "id": 638, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 8043224 + }, + { + "id": 639, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 19, + "time": 8049124 + }, + { + "id": 640, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 15, + "time": 8056838 + }, + { + "id": 641, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 8070188 + }, + { + "id": 642, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 22, + "time": 8072994 + }, + { + "id": 643, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 8086696 + }, + { + "id": 644, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 29, + "time": 8102187 + }, + { + "id": 645, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 17, + "time": 8117178 + }, + { + "id": 646, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 9, + "time": 8118201 + }, + { + "id": 647, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 15, + "time": 8120297 + }, + { + "id": 648, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 35, + "time": 8122776 + }, + { + "id": 649, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 41, + "time": 8127675 + }, + { + "id": 650, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 8138804 + }, + { + "id": 651, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 49, + "time": 8164672 + }, + { + "id": 652, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 29, + "time": 8170703 + }, + { + "id": 653, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 8172352 + }, + { + "id": 654, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 35, + "time": 8174705 + }, + { + "id": 655, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 8180239 + }, + { + "id": 656, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 32, + "time": 8181555 + }, + { + "id": 657, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 16, + "time": 8189820 + }, + { + "id": 658, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 8198639 + }, + { + "id": 659, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 8234236 + }, + { + "id": 660, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 41, + "time": 8243773 + }, + { + "id": 661, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 32, + "time": 8244170 + }, + { + "id": 662, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 22, + "time": 8248478 + }, + { + "id": 663, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 35, + "time": 8273965 + }, + { + "id": 664, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 19, + "time": 8321210 + }, + { + "id": 665, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 8328787 + }, + { + "id": 666, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 50, + "time": 8343897 + }, + { + "id": 667, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 10, + "time": 8361749 + }, + { + "id": 668, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 8378524 + }, + { + "id": 669, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 8442073 + }, + { + "id": 670, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 49, + "time": 8451939 + }, + { + "id": 671, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 17, + "time": 8477558 + }, + { + "id": 672, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 31, + "time": 8484492 + }, + { + "id": 673, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 5, + "teamId": 16, + "time": 8492735 + }, + { + "id": 674, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 10, + "time": 8536670 + }, + { + "id": 675, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 8555699 + }, + { + "id": 676, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 35, + "time": 8557152 + }, + { + "id": 677, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 8566684 + }, + { + "id": 678, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 17, + "time": 8599787 + }, + { + "id": 679, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 2, + "time": 8613624 + }, + { + "id": 680, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 8619438 + }, + { + "id": 681, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 8675244 + }, + { + "id": 682, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 55, + "time": 8687451 + }, + { + "id": 683, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 36, + "time": 8699182 + }, + { + "id": 684, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 8730466 + }, + { + "id": 685, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 49, + "time": 8760992 + }, + { + "id": 686, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 18, + "time": 8761018 + }, + { + "id": 687, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 8768617 + }, + { + "id": 688, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 8777274 + }, + { + "id": 689, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 8794164 + }, + { + "id": 690, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 8821070 + }, + { + "id": 691, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 17, + "time": 8839652 + }, + { + "id": 692, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 28, + "time": 8839712 + }, + { + "id": 693, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 8842501 + }, + { + "id": 694, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 45, + "time": 8858967 + }, + { + "id": 695, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 18, + "time": 8868438 + }, + { + "id": 696, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 8877978 + }, + { + "id": 697, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 8879667 + }, + { + "id": 698, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 45, + "time": 8891671 + }, + { + "id": 699, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 3, + "time": 8894293 + }, + { + "id": 700, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 18, + "time": 8907273 + }, + { + "id": 701, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 22, + "time": 8911374 + }, + { + "id": 702, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 8921721 + }, + { + "id": 703, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 8930760 + }, + { + "id": 704, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 18, + "time": 8932044 + }, + { + "id": 705, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 39, + "time": 8973515 + }, + { + "id": 706, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 41, + "time": 8980938 + }, + { + "id": 707, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 9026950 + }, + { + "id": 708, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 9034107 + }, + { + "id": 709, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 9043391 + }, + { + "id": 710, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 45, + "time": 9046002 + }, + { + "id": 711, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 9063997 + }, + { + "id": 712, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 52, + "time": 9072436 + }, + { + "id": 713, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 47, + "time": 9073336 + }, + { + "id": 714, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 14, + "time": 9101257 + }, + { + "id": 715, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 28, + "time": 9115483 + }, + { + "id": 716, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 3, + "time": 9118060 + }, + { + "id": 717, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 14, + "time": 9121790 + }, + { + "id": 718, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 17, + "time": 9130739 + }, + { + "id": 719, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 3, + "time": 9145649 + }, + { + "id": 720, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 9162692 + }, + { + "id": 721, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 9174313 + }, + { + "id": 722, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 18, + "time": 9191405 + }, + { + "id": 723, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 27, + "time": 9211901 + }, + { + "id": 724, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 3, + "time": 9246197 + }, + { + "id": 725, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 28, + "time": 9247385 + }, + { + "id": 726, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 9250257 + }, + { + "id": 727, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 18, + "time": 9250726 + }, + { + "id": 728, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 9261409 + }, + { + "id": 729, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 9, + "time": 9270270 + }, + { + "id": 730, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 41, + "time": 9285317 + }, + { + "id": 731, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 18, + "time": 9300673 + }, + { + "id": 732, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 53, + "time": 9312309 + }, + { + "id": 733, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 31, + "time": 9313946 + }, + { + "id": 734, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 54, + "time": 9337281 + }, + { + "id": 735, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 9, + "time": 9355154 + }, + { + "id": 736, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 3, + "time": 9384365 + }, + { + "id": 737, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 3, + "time": 9398436 + }, + { + "id": 738, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 25, + "time": 9414161 + }, + { + "id": 739, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 31, + "time": 9438734 + }, + { + "id": 740, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 17, + "time": 9453964 + }, + { + "id": 741, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 3, + "time": 9474603 + }, + { + "id": 742, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 9494195 + }, + { + "id": 743, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 25, + "time": 9499683 + }, + { + "id": 744, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 22, + "time": 9509104 + }, + { + "id": 745, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 9529582 + }, + { + "id": 746, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 41, + "time": 9556790 + }, + { + "id": 747, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 32, + "time": 9577808 + }, + { + "id": 748, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 50, + "time": 9588425 + }, + { + "id": 749, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 37, + "time": 9622669 + }, + { + "id": 750, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 31, + "time": 9626365 + }, + { + "id": 751, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 14, + "time": 9644744 + }, + { + "id": 752, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 49, + "time": 9668454 + }, + { + "id": 753, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 41, + "time": 9720920 + }, + { + "id": 754, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 41, + "time": 9767261 + }, + { + "id": 755, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 9768258 + }, + { + "id": 756, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 19, + "time": 9775222 + }, + { + "id": 757, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 4, + "time": 9781559 + }, + { + "id": 758, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 27, + "time": 9805201 + }, + { + "id": 759, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 4, + "time": 9827581 + }, + { + "id": 760, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 19, + "time": 9830281 + }, + { + "id": 761, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 25, + "time": 9830438 + }, + { + "id": 762, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 8, + "time": 9843342 + }, + { + "id": 763, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 54, + "time": 9853842 + }, + { + "id": 764, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 22, + "time": 9859659 + }, + { + "id": 765, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 33, + "time": 9882436 + }, + { + "id": 766, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 9, + "time": 9905090 + }, + { + "id": 767, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 4, + "time": 9947589 + }, + { + "id": 768, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 9977681 + }, + { + "id": 769, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 54, + "time": 9997171 + }, + { + "id": 770, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 34, + "time": 10011084 + }, + { + "id": 771, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 41, + "time": 10086821 + }, + { + "id": 772, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 54, + "time": 10111908 + }, + { + "id": 773, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 10187865 + }, + { + "id": 774, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 14, + "time": 10223151 + }, + { + "id": 775, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 10281546 + }, + { + "id": 776, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 1, + "time": 10315433 + }, + { + "id": 777, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 49, + "time": 10390740 + }, + { + "id": 778, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 18, + "time": 10398106 + }, + { + "id": 779, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 1, + "time": 10406796 + }, + { + "id": 780, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 11, + "time": 10419762 + }, + { + "id": 781, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 31, + "time": 10435346 + }, + { + "id": 782, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 7, + "time": 10447756 + }, + { + "id": 783, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 53, + "time": 10483070 + }, + { + "id": 784, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 10508834 + }, + { + "id": 785, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 7, + "time": 10513178 + }, + { + "id": 786, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 29, + "time": 10513704 + }, + { + "id": 787, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 18, + "time": 10521020 + }, + { + "id": 788, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 42, + "time": 10540888 + }, + { + "id": 789, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 20, + "time": 10574908 + }, + { + "id": 790, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 10, + "time": 10583224 + }, + { + "id": 791, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 10586615 + }, + { + "id": 792, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 10591569 + }, + { + "id": 793, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 35, + "time": 10615338 + }, + { + "id": 794, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 17, + "time": 10622796 + }, + { + "id": 795, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 10633827 + }, + { + "id": 796, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 23, + "time": 10679765 + }, + { + "id": 797, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 10702002 + }, + { + "id": 798, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 33, + "time": 10707226 + }, + { + "id": 799, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 10786930 + }, + { + "id": 800, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 29, + "time": 10805653 + }, + { + "id": 801, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 10813103 + }, + { + "id": 802, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 10825477 + }, + { + "id": 803, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 53, + "time": 10843786 + }, + { + "id": 804, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 43, + "time": 10844721 + }, + { + "id": 805, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 54, + "time": 10869577 + }, + { + "id": 806, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 29, + "time": 10911685 + }, + { + "id": 807, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 54, + "time": 10922247 + }, + { + "id": 808, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 42, + "time": 10922626 + }, + { + "id": 809, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 7, + "time": 10951956 + }, + { + "id": 810, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 7, + "time": 10974042 + }, + { + "id": 811, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 41, + "time": 11004850 + }, + { + "id": 812, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 11005425 + }, + { + "id": 813, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 54, + "time": 11011100 + }, + { + "id": 814, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 11025468 + }, + { + "id": 815, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 11025825 + }, + { + "id": 816, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 8, + "time": 11038787 + }, + { + "id": 817, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 52, + "time": 11046105 + }, + { + "id": 818, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 45, + "time": 11086805 + }, + { + "id": 819, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 50, + "time": 11151281 + }, + { + "id": 820, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 20, + "time": 11160411 + }, + { + "id": 821, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 11, + "time": 11184054 + }, + { + "id": 822, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 17, + "time": 11184908 + }, + { + "id": 823, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 14, + "time": 11185655 + }, + { + "id": 824, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 26, + "time": 11204050 + }, + { + "id": 825, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 11223817 + }, + { + "id": 826, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 26, + "time": 11237966 + }, + { + "id": 827, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 43, + "time": 11263099 + }, + { + "id": 828, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 5, + "time": 11291034 + }, + { + "id": 829, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 30, + "time": 11301567 + }, + { + "id": 830, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 11, + "time": 11355790 + }, + { + "id": 831, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 17, + "time": 11364058 + }, + { + "id": 832, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 16, + "time": 11366677 + }, + { + "id": 833, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 5, + "time": 11430541 + }, + { + "id": 834, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 39, + "time": 11431204 + }, + { + "id": 835, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 16, + "time": 11470515 + }, + { + "id": 836, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 38, + "time": 11486600 + }, + { + "id": 837, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 38, + "time": 11513980 + }, + { + "id": 838, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 11562025 + }, + { + "id": 839, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 36, + "time": 11562274 + }, + { + "id": 840, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 43, + "time": 11594098 + }, + { + "id": 841, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 11599527 + }, + { + "id": 842, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 11688631 + }, + { + "id": 843, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 5, + "time": 11693296 + }, + { + "id": 844, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 11706009 + }, + { + "id": 845, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 36, + "time": 11711947 + }, + { + "id": 846, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 11719524 + }, + { + "id": 847, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 30, + "time": 11728766 + }, + { + "id": 848, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 15, + "time": 11729700 + }, + { + "id": 849, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 2, + "time": 11733615 + }, + { + "id": 850, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 33, + "time": 11747971 + }, + { + "id": 851, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 0, + "time": 11756339 + }, + { + "id": 852, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 30, + "time": 11761644 + }, + { + "id": 853, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 7, + "time": 11799914 + }, + { + "id": 854, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 0, + "time": 11800053 + }, + { + "id": 855, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 24, + "time": 11848197 + }, + { + "id": 856, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 38, + "time": 11901239 + }, + { + "id": 857, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 25, + "time": 11934550 + }, + { + "id": 858, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 5, + "time": 11952916 + }, + { + "id": 859, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 38, + "time": 12038785 + }, + { + "id": 860, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 28, + "time": 12050921 + }, + { + "id": 861, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 12066105 + }, + { + "id": 862, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 19, + "time": 12078422 + }, + { + "id": 863, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 45, + "time": 12088548 + }, + { + "id": 864, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 12099355 + }, + { + "id": 865, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 52, + "time": 12149461 + }, + { + "id": 866, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 22, + "time": 12159046 + }, + { + "id": 867, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 12169819 + }, + { + "id": 868, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 25, + "time": 12194765 + }, + { + "id": 869, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 48, + "time": 12222138 + }, + { + "id": 870, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 12244650 + }, + { + "id": 871, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 22, + "time": 12244715 + }, + { + "id": 872, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 30, + "time": 12256528 + }, + { + "id": 873, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 45, + "time": 12261377 + }, + { + "id": 874, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 19, + "time": 12278682 + }, + { + "id": 875, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 12394008 + }, + { + "id": 876, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 11, + "time": 12403468 + }, + { + "id": 877, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 25, + "time": 12450885 + }, + { + "id": 878, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 52, + "time": 12475563 + }, + { + "id": 879, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 18, + "time": 12491209 + }, + { + "id": 880, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 10, + "time": 12500328 + }, + { + "id": 881, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 31, + "time": 12505384 + }, + { + "id": 882, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 49, + "time": 12524325 + }, + { + "id": 883, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 46, + "time": 12525777 + }, + { + "id": 884, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 12536797 + }, + { + "id": 885, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 7, + "time": 12537484 + }, + { + "id": 886, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 0, + "time": 12565381 + }, + { + "id": 887, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 10, + "time": 12565971 + }, + { + "id": 888, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 18, + "time": 12589229 + }, + { + "id": 889, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 46, + "time": 12618641 + }, + { + "id": 890, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 12635729 + }, + { + "id": 891, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 25, + "time": 12647160 + }, + { + "id": 892, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 12715506 + }, + { + "id": 893, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 42, + "time": 12719193 + }, + { + "id": 894, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 11, + "time": 12748044 + }, + { + "id": 895, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 42, + "time": 12766708 + }, + { + "id": 896, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 34, + "time": 12773481 + }, + { + "id": 897, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 32, + "time": 12779482 + }, + { + "id": 898, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 40, + "time": 12912588 + }, + { + "id": 899, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 31, + "time": 12917352 + }, + { + "id": 900, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 12968187 + }, + { + "id": 901, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 11, + "time": 12970163 + }, + { + "id": 902, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 24, + "time": 13012735 + }, + { + "id": 903, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 13020749 + }, + { + "id": 904, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 12, + "teamId": 20, + "time": 13020917 + }, + { + "id": 905, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 12, + "teamId": 20, + "time": 13059780 + }, + { + "id": 906, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 44, + "time": 13067593 + }, + { + "id": 907, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 27, + "time": 13073773 + }, + { + "id": 908, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 13079331 + }, + { + "id": 909, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 13093931 + }, + { + "id": 910, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 24, + "time": 13103991 + }, + { + "id": 911, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 13106884 + }, + { + "id": 912, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 11, + "time": 13107350 + }, + { + "id": 913, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 44, + "time": 13112466 + }, + { + "id": 914, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 52, + "time": 13123488 + }, + { + "id": 915, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 27, + "time": 13136327 + }, + { + "id": 916, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 13154746 + }, + { + "id": 917, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 42, + "time": 13178399 + }, + { + "id": 918, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 52, + "time": 13233582 + }, + { + "id": 919, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 10, + "time": 13252898 + }, + { + "id": 920, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 42, + "time": 13269303 + }, + { + "id": 921, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 40, + "time": 13332364 + }, + { + "id": 922, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 13341949 + }, + { + "id": 923, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 46, + "time": 13384977 + }, + { + "id": 924, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 3, + "time": 13408491 + }, + { + "id": 925, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 42, + "time": 13415688 + }, + { + "id": 926, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 13430547 + }, + { + "id": 927, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 3, + "time": 13465224 + }, + { + "id": 928, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 13499651 + }, + { + "id": 929, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 39, + "time": 13501623 + }, + { + "id": 930, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 13529925 + }, + { + "id": 931, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 39, + "time": 13530941 + }, + { + "id": 932, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 13576386 + }, + { + "id": 933, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 55, + "time": 13640057 + }, + { + "id": 934, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 10, + "time": 13648474 + }, + { + "id": 935, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 15, + "time": 13667543 + }, + { + "id": 936, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 13676575 + }, + { + "id": 937, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 28, + "time": 13691540 + }, + { + "id": 938, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 13696718 + }, + { + "id": 939, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 42, + "time": 13706198 + }, + { + "id": 940, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 13722746 + }, + { + "id": 941, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 30, + "time": 13725708 + }, + { + "id": 942, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 24, + "time": 13735598 + }, + { + "id": 943, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 13754799 + }, + { + "id": 944, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 43, + "time": 13775226 + }, + { + "id": 945, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 13782709 + }, + { + "id": 946, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 3, + "time": 13787889 + }, + { + "id": 947, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 13805871 + }, + { + "id": 948, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 3, + "time": 13819023 + }, + { + "id": 949, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 13856954 + }, + { + "id": 950, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 3, + "time": 13973672 + }, + { + "id": 951, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 17, + "time": 14039213 + }, + { + "id": 952, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 14052941 + }, + { + "id": 953, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 2, + "time": 14066816 + }, + { + "id": 954, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 9, + "time": 14066958 + }, + { + "id": 955, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 3, + "time": 14152056 + }, + { + "id": 956, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 27, + "time": 14156644 + }, + { + "id": 957, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 26, + "time": 14163125 + }, + { + "id": 958, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 3, + "time": 14163375 + }, + { + "id": 959, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 42, + "time": 14176861 + }, + { + "id": 960, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 35, + "time": 14178579 + }, + { + "id": 961, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 42, + "time": 14189310 + }, + { + "id": 962, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 14195565 + }, + { + "id": 963, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 46, + "time": 14198072 + }, + { + "id": 964, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 26, + "time": 14217047 + }, + { + "id": 965, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 53, + "time": 14231112 + }, + { + "id": 966, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 12, + "teamId": 33, + "time": 14234459 + }, + { + "id": 967, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 14248272 + }, + { + "id": 968, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 35, + "time": 14259462 + }, + { + "id": 969, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 14270354 + }, + { + "id": 970, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 32, + "time": 14338191 + }, + { + "id": 971, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 14340999 + }, + { + "id": 972, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 15, + "time": 14367436 + }, + { + "id": 973, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 14368013 + }, + { + "id": 974, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 3, + "time": 14390852 + }, + { + "id": 975, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 3, + "time": 14406578 + }, + { + "id": 976, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 0, + "time": 14427218 + }, + { + "id": 977, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 14431364 + }, + { + "id": 978, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 14434477 + }, + { + "id": 979, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 14451491 + }, + { + "id": 980, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 14452836 + }, + { + "id": 981, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 0, + "time": 14477341 + }, + { + "id": 982, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 0, + "time": 14499328 + }, + { + "id": 983, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 15, + "time": 14531372 + }, + { + "id": 984, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 35, + "time": 14538970 + }, + { + "id": 985, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 14623531 + }, + { + "id": 986, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 14639807 + }, + { + "id": 987, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 32, + "time": 14642936 + }, + { + "id": 988, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 14651262 + }, + { + "id": 989, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 47, + "time": 14652717 + }, + { + "id": 990, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 48, + "time": 14682862 + }, + { + "id": 991, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 14711279 + }, + { + "id": 992, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 14716148 + }, + { + "id": 993, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 11, + "time": 14716190 + }, + { + "id": 994, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 43, + "time": 14719028 + }, + { + "id": 995, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 13, + "time": 14747626 + }, + { + "id": 996, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 27, + "time": 14765256 + }, + { + "id": 997, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 49, + "time": 14780916 + }, + { + "id": 998, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 14802987 + }, + { + "id": 999, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 3, + "time": 14804482 + }, + { + "id": 1000, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 34, + "time": 14817776 + }, + { + "id": 1001, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 27, + "time": 14822826 + }, + { + "id": 1002, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 14887121 + }, + { + "id": 1003, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 31, + "time": 14903880 + }, + { + "id": 1004, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 14922418 + }, + { + "id": 1005, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 11, + "time": 14928099 + }, + { + "id": 1006, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 20, + "time": 14937351 + }, + { + "id": 1007, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 14941192 + }, + { + "id": 1008, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 34, + "time": 14959883 + }, + { + "id": 1009, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 47, + "time": 14975939 + }, + { + "id": 1010, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 14985516 + }, + { + "id": 1011, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 15003078 + }, + { + "id": 1012, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 15039267 + }, + { + "id": 1013, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 15046918 + }, + { + "id": 1014, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 15050043 + }, + { + "id": 1015, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 15056509 + }, + { + "id": 1016, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 15086555 + }, + { + "id": 1017, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 12, + "teamId": 20, + "time": 15090604 + }, + { + "id": 1018, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 5, + "time": 15113375 + }, + { + "id": 1019, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 45, + "time": 15149023 + }, + { + "id": 1020, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 2, + "teamId": 21, + "time": 15179857 + }, + { + "id": 1021, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 8, + "time": 15221307 + }, + { + "id": 1022, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 2, + "time": 15232657 + }, + { + "id": 1023, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 29, + "time": 15242153 + }, + { + "id": 1024, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 15246227 + }, + { + "id": 1025, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 33, + "time": 15255475 + }, + { + "id": 1026, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 19, + "time": 15260450 + }, + { + "id": 1027, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 33, + "time": 15267700 + }, + { + "id": 1028, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 15273221 + }, + { + "id": 1029, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 15282590 + }, + { + "id": 1030, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 15300905 + }, + { + "id": 1031, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 15308488 + }, + { + "id": 1032, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 47, + "time": 15313350 + }, + { + "id": 1033, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 2, + "time": 15321229 + }, + { + "id": 1034, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 15323846 + }, + { + "id": 1035, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 44, + "time": 15348380 + }, + { + "id": 1036, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 1, + "time": 15354288 + }, + { + "id": 1037, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 46, + "time": 15358772 + }, + { + "id": 1038, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 14, + "time": 15413008 + }, + { + "id": 1039, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 25, + "time": 15466251 + }, + { + "id": 1040, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 47, + "time": 15474293 + }, + { + "id": 1041, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 44, + "time": 15474951 + }, + { + "id": 1042, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 54, + "time": 15475257 + }, + { + "id": 1043, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 34, + "time": 15488257 + }, + { + "id": 1044, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 42, + "time": 15491788 + }, + { + "id": 1045, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 54, + "time": 15499080 + }, + { + "id": 1046, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 1, + "time": 15559910 + }, + { + "id": 1047, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 47, + "time": 15775985 + }, + { + "id": 1048, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 19, + "time": 15784343 + }, + { + "id": 1049, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 27, + "time": 15786940 + }, + { + "id": 1050, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 2, + "time": 15792148 + }, + { + "id": 1051, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 15801524 + }, + { + "id": 1052, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 43, + "time": 15803088 + }, + { + "id": 1053, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 15809504 + }, + { + "id": 1054, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 15814008 + }, + { + "id": 1055, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 47, + "time": 15835292 + }, + { + "id": 1056, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 15847498 + }, + { + "id": 1057, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 47, + "time": 15856741 + }, + { + "id": 1058, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 34, + "time": 15860066 + }, + { + "id": 1059, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 4, + "teamId": 7, + "time": 15861824 + }, + { + "id": 1060, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 19, + "time": 15930165 + }, + { + "id": 1061, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 53, + "time": 15957576 + }, + { + "id": 1062, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 13, + "time": 15967753 + }, + { + "id": 1063, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 19, + "time": 15976531 + }, + { + "id": 1064, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 16030919 + }, + { + "id": 1065, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 47, + "time": 16051856 + }, + { + "id": 1066, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 47, + "time": 16089143 + }, + { + "id": 1067, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 16130713 + }, + { + "id": 1068, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 18, + "time": 16130968 + }, + { + "id": 1069, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 18, + "time": 16137838 + }, + { + "id": 1070, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 16161557 + }, + { + "id": 1071, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 16181595 + }, + { + "id": 1072, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16181924 + }, + { + "id": 1073, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 50, + "time": 16191087 + }, + { + "id": 1074, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 16205133 + }, + { + "id": 1075, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 50, + "time": 16220773 + }, + { + "id": 1076, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 16224528 + }, + { + "id": 1077, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16242078 + }, + { + "id": 1078, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 16246774 + }, + { + "id": 1079, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16273472 + }, + { + "id": 1080, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 53, + "time": 16285901 + }, + { + "id": 1081, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 35, + "time": 16286362 + }, + { + "id": 1082, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 3, + "time": 16289964 + }, + { + "id": 1083, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 16292810 + }, + { + "id": 1084, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 26, + "time": 16294807 + }, + { + "id": 1085, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 8, + "time": 16297308 + }, + { + "id": 1086, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 24, + "time": 16320942 + }, + { + "id": 1087, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 31, + "time": 16329907 + }, + { + "id": 1088, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 0, + "time": 16349771 + }, + { + "id": 1089, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 28, + "time": 16352213 + }, + { + "id": 1090, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 22, + "time": 16379604 + }, + { + "id": 1091, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16392873 + }, + { + "id": 1092, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 18, + "time": 16409354 + }, + { + "id": 1093, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 42, + "time": 16426393 + }, + { + "id": 1094, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16469801 + }, + { + "id": 1095, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 16500094 + }, + { + "id": 1096, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 55, + "time": 16509762 + }, + { + "id": 1097, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 22, + "time": 16512734 + }, + { + "id": 1098, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 44, + "time": 16532843 + }, + { + "id": 1099, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 20, + "time": 16534200 + }, + { + "id": 1100, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 3, + "time": 16536850 + }, + { + "id": 1101, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16550791 + }, + { + "id": 1102, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 18, + "time": 16551887 + }, + { + "id": 1103, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 3, + "time": 16578815 + }, + { + "id": 1104, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 29, + "time": 16592516 + }, + { + "id": 1105, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16594450 + }, + { + "id": 1106, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 46, + "time": 16601997 + }, + { + "id": 1107, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 44, + "time": 16615942 + }, + { + "id": 1108, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 42, + "time": 16634187 + }, + { + "id": 1109, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 34, + "time": 16634992 + }, + { + "id": 1110, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 3, + "time": 16641891 + }, + { + "id": 1111, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 16652944 + }, + { + "id": 1112, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 20, + "time": 16662160 + }, + { + "id": 1113, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 3, + "time": 16680691 + }, + { + "id": 1114, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 33, + "time": 16694820 + }, + { + "id": 1115, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 12, + "time": 16705006 + }, + { + "id": 1116, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 18, + "time": 16708003 + }, + { + "id": 1117, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 16718220 + }, + { + "id": 1118, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 8, + "time": 16748164 + }, + { + "id": 1119, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 16758498 + }, + { + "id": 1120, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 18, + "time": 16766726 + }, + { + "id": 1121, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 24, + "time": 16774157 + }, + { + "id": 1122, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 12, + "teamId": 20, + "time": 16775994 + }, + { + "id": 1123, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 8, + "time": 16794490 + }, + { + "id": 1124, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 43, + "time": 16806436 + }, + { + "id": 1125, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 28, + "time": 16814495 + }, + { + "id": 1126, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 33, + "time": 16838327 + }, + { + "id": 1127, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16839656 + }, + { + "id": 1128, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 49, + "time": 16855524 + }, + { + "id": 1129, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 33, + "time": 16861828 + }, + { + "id": 1130, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 33, + "time": 16880900 + }, + { + "id": 1131, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 10, + "time": 16885333 + }, + { + "id": 1132, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 34, + "time": 16888153 + }, + { + "id": 1133, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 44, + "time": 16888909 + }, + { + "id": 1134, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16891256 + }, + { + "id": 1135, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 16899166 + }, + { + "id": 1136, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 18, + "time": 16908683 + }, + { + "id": 1137, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16923875 + }, + { + "id": 1138, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 26, + "time": 16946775 + }, + { + "id": 1139, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 16950665 + }, + { + "id": 1140, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 45, + "time": 16961312 + }, + { + "id": 1141, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 16989216 + }, + { + "id": 1142, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 3, + "time": 17005989 + }, + { + "id": 1143, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 33, + "time": 17010564 + }, + { + "id": 1144, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 33, + "time": 17013934 + }, + { + "id": 1145, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 3, + "time": 17034114 + }, + { + "id": 1146, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 17034316 + }, + { + "id": 1147, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 44, + "time": 17054157 + }, + { + "id": 1148, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 29, + "time": 17070201 + }, + { + "id": 1149, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 52, + "time": 17083802 + }, + { + "id": 1150, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 17095604 + }, + { + "id": 1151, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 10, + "time": 17117066 + }, + { + "id": 1152, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 12, + "time": 17126403 + }, + { + "id": 1153, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 42, + "time": 17136325 + }, + { + "id": 1154, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 10, + "time": 17143030 + }, + { + "id": 1155, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 44, + "time": 17170311 + }, + { + "id": 1156, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 40, + "time": 17185155 + }, + { + "id": 1157, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 17186269 + }, + { + "id": 1158, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 20, + "time": 17191013 + }, + { + "id": 1159, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 40, + "time": 17202839 + }, + { + "id": 1160, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 12, + "time": 17227653 + }, + { + "id": 1161, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 33, + "time": 17229948 + }, + { + "id": 1162, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17236956 + }, + { + "id": 1163, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 17245244 + }, + { + "id": 1164, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17252133 + }, + { + "id": 1165, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 33, + "time": 17253315 + }, + { + "id": 1166, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 33, + "time": 17256681 + }, + { + "id": 1167, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 33, + "time": 17259954 + }, + { + "id": 1168, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 17263301 + }, + { + "id": 1169, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 17269178 + }, + { + "id": 1170, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 0, + "time": 17289806 + }, + { + "id": 1171, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 26, + "time": 17303382 + }, + { + "id": 1172, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 17318595 + }, + { + "id": 1173, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17336970 + }, + { + "id": 1174, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 29, + "time": 17348146 + }, + { + "id": 1175, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 55, + "time": 17370818 + }, + { + "id": 1176, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 43, + "time": 17375297 + }, + { + "id": 1177, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 17376189 + }, + { + "id": 1178, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 23, + "time": 17386546 + }, + { + "id": 1179, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 17391355 + }, + { + "id": 1180, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 23, + "time": 17401159 + }, + { + "id": 1181, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 17402521 + }, + { + "id": 1182, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 32, + "time": 17413133 + }, + { + "id": 1183, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 17413492 + }, + { + "id": 1184, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17417166 + }, + { + "id": 1185, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 17439065 + }, + { + "id": 1186, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 9, + "time": 17443357 + }, + { + "id": 1187, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 17451075 + }, + { + "id": 1188, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 29, + "time": 17451534 + }, + { + "id": 1189, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17458527 + }, + { + "id": 1190, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 17471721 + }, + { + "id": 1191, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17482653 + }, + { + "id": 1192, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 22, + "time": 17485291 + }, + { + "id": 1193, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17501624 + }, + { + "id": 1194, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 17504391 + }, + { + "id": 1195, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17512487 + }, + { + "id": 1196, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 17513123 + }, + { + "id": 1197, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 17514753 + }, + { + "id": 1198, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 49, + "time": 17519731 + }, + { + "id": 1199, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 12, + "time": 17532861 + }, + { + "id": 1200, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 23, + "time": 17535977 + }, + { + "id": 1201, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17540068 + }, + { + "id": 1202, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 37, + "time": 17553439 + }, + { + "id": 1203, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17561069 + }, + { + "id": 1204, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 34, + "time": 17562419 + }, + { + "id": 1205, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 17564214 + }, + { + "id": 1206, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 18, + "time": 17578580 + }, + { + "id": 1207, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 17581246 + }, + { + "id": 1208, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 52, + "time": 17584021 + }, + { + "id": 1209, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 17595782 + }, + { + "id": 1210, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 17595818 + }, + { + "id": 1211, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17606501 + }, + { + "id": 1212, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17616727 + }, + { + "id": 1213, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17617275 + }, + { + "id": 1214, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 17623715 + }, + { + "id": 1215, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 52, + "time": 17626586 + }, + { + "id": 1216, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 17626910 + }, + { + "id": 1217, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 17635914 + }, + { + "id": 1218, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 17653185 + }, + { + "id": 1219, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17665954 + }, + { + "id": 1220, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 17672458 + }, + { + "id": 1221, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17672934 + }, + { + "id": 1222, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17688835 + }, + { + "id": 1223, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 52, + "time": 17691004 + }, + { + "id": 1224, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17713009 + }, + { + "id": 1225, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 52, + "time": 17716710 + }, + { + "id": 1226, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 41, + "time": 17723549 + }, + { + "id": 1227, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 17724706 + }, + { + "id": 1228, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 43, + "time": 17726366 + }, + { + "id": 1229, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 35, + "time": 17730689 + }, + { + "id": 1230, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 27, + "time": 17731321 + }, + { + "id": 1231, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17735983 + }, + { + "id": 1232, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 41, + "time": 17742758 + }, + { + "id": 1233, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17746644 + }, + { + "id": 1234, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 17750920 + }, + { + "id": 1235, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 17753693 + }, + { + "id": 1236, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 41, + "time": 17754358 + }, + { + "id": 1237, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 29, + "time": 17763422 + }, + { + "id": 1238, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 17766318 + }, + { + "id": 1239, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 17770410 + }, + { + "id": 1240, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 33, + "time": 17778808 + }, + { + "id": 1241, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 2, + "time": 17787497 + }, + { + "id": 1242, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 22, + "time": 17788336 + }, + { + "id": 1243, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 9, + "teamId": 52, + "time": 17788941 + }, + { + "id": 1244, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 17792044 + }, + { + "id": 1245, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17802618 + }, + { + "id": 1246, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 1, + "time": 17807762 + }, + { + "id": 1247, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 23, + "time": 17807982 + }, + { + "id": 1248, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 15, + "time": 17819194 + }, + { + "id": 1249, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 27, + "time": 17821276 + }, + { + "id": 1250, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 39, + "time": 17822042 + }, + { + "id": 1251, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 17825549 + }, + { + "id": 1252, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 17826924 + }, + { + "id": 1253, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 40, + "time": 17831788 + }, + { + "id": 1254, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 53, + "time": 17831957 + }, + { + "id": 1255, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 23, + "time": 17832388 + }, + { + "id": 1256, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 40, + "time": 17834901 + }, + { + "id": 1257, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 17836686 + }, + { + "id": 1258, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 6, + "teamId": 40, + "time": 17837634 + }, + { + "id": 1259, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 23, + "time": 17838334 + }, + { + "id": 1260, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17838748 + }, + { + "id": 1261, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 7, + "time": 17839633 + }, + { + "id": 1262, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 12, + "teamId": 40, + "time": 17840118 + }, + { + "id": 1263, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 22, + "time": 17843949 + }, + { + "id": 1264, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 37, + "time": 17847026 + }, + { + "id": 1265, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 15, + "time": 17847906 + }, + { + "id": 1266, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 23, + "time": 17848386 + }, + { + "id": 1267, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17849609 + }, + { + "id": 1268, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 27, + "time": 17849698 + }, + { + "id": 1269, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 2, + "time": 17850546 + }, + { + "id": 1270, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 43, + "time": 17866255 + }, + { + "id": 1271, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "PE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 27, + "time": 17866406 + }, + { + "id": 1272, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17868079 + }, + { + "id": 1273, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17869085 + }, + { + "id": 1274, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 47, + "time": 17878640 + }, + { + "id": 1275, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 43, + "time": 17890245 + }, + { + "id": 1276, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17898604 + }, + { + "id": 1277, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 2, + "time": 17905010 + }, + { + "id": 1278, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17906125 + }, + { + "id": 1279, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 9, + "time": 17912611 + }, + { + "id": 1280, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 7, + "time": 17913058 + }, + { + "id": 1281, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 43, + "time": 17914731 + }, + { + "id": 1282, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 15, + "time": 17917404 + }, + { + "id": 1283, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 53, + "time": 17920243 + }, + { + "id": 1284, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 7, + "time": 17928556 + }, + { + "id": 1285, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 22, + "time": 17929247 + }, + { + "id": 1286, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17930671 + }, + { + "id": 1287, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 27, + "time": 17938143 + }, + { + "id": 1288, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 15, + "time": 17938790 + }, + { + "id": 1289, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 20, + "time": 17939872 + }, + { + "id": 1290, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "TL", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 11, + "teamId": 7, + "time": 17940543 + }, + { + "id": 1291, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 12, + "time": 17944340 + }, + { + "id": 1292, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 55, + "time": 17947154 + }, + { + "id": 1293, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 12, + "time": 17952610 + }, + { + "id": 1294, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 20, + "time": 17953101 + }, + { + "id": 1295, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17953911 + }, + { + "id": 1296, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17954078 + }, + { + "id": 1297, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 2, + "time": 17954817 + }, + { + "id": 1298, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17961141 + }, + { + "id": 1299, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 34, + "time": 17962228 + }, + { + "id": 1300, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 44, + "time": 17964287 + }, + { + "id": 1301, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 13, + "time": 17964486 + }, + { + "id": 1302, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 25, + "time": 17966261 + }, + { + "id": 1303, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 3, + "teamId": 14, + "time": 17966819 + }, + { + "id": 1304, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 43, + "time": 17967715 + }, + { + "id": 1305, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 26, + "time": 17968675 + }, + { + "id": 1306, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 2, + "time": 17969451 + }, + { + "id": 1307, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 27, + "time": 17970710 + }, + { + "id": 1308, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 39, + "time": 17979656 + }, + { + "id": 1309, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17980026 + }, + { + "id": 1310, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 36, + "time": 17980736 + }, + { + "id": 1311, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 12, + "time": 17982119 + }, + { + "id": 1312, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 7, + "teamId": 26, + "time": 17982559 + }, + { + "id": 1313, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 53, + "time": 17987265 + }, + { + "id": 1314, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 43, + "time": 17988883 + }, + { + "id": 1315, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 27, + "time": 17989225 + }, + { + "id": 1316, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 2, + "time": 17991482 + }, + { + "id": 1317, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "AC", + "isAddingPenalty": false, + "isAccepted": true + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 8, + "teamId": 41, + "time": 17993590 + }, + { + "id": 1318, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "RE", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 12, + "time": 17994681 + }, + { + "id": 1319, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 10, + "teamId": 28, + "time": 17995015 + }, + { + "id": 1320, + "result": { + "type": "ICPC", + "verdict": { + "shortName": "WA", + "isAddingPenalty": true, + "isAccepted": false + }, + "isFirstToSolveRun": false + }, + "percentage": 1.0, + "problemId": 1, + "teamId": 46, + "time": 17997159 + } + ], + "analyticsMessages": [ + ] +} \ No newline at end of file diff --git a/src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.pcmsTest.approved.txt b/src/cds/testData/loaders/goldenData/pcms.txt similarity index 100% rename from src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.pcmsTest.approved.txt rename to src/cds/testData/loaders/goldenData/pcms.txt diff --git a/src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.pcmsIOITest.approved.txt b/src/cds/testData/loaders/goldenData/pcmsIOI.txt similarity index 100% rename from src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.pcmsIOITest.approved.txt rename to src/cds/testData/loaders/goldenData/pcmsIOI.txt diff --git a/src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.testSys.approved.txt b/src/cds/testData/loaders/goldenData/testSys.txt similarity index 100% rename from src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.testSys.approved.txt rename to src/cds/testData/loaders/goldenData/testSys.txt diff --git a/src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.testSysWithAdvancedOverride.approved.txt b/src/cds/testData/loaders/goldenData/testSysWithAdvancedOverride.txt similarity index 100% rename from src/cds/src/test/kotlin/org/icpclive/cds/CdsLoadersTest.testSysWithAdvancedOverride.approved.txt rename to src/cds/testData/loaders/goldenData/testSysWithAdvancedOverride.txt