{"problem":{"name":"Square Inequality","description":{"content":"You are given integers $A$, $B$, and $C$.   Determine whether $A^2 + B^2 < C^2$ holds.","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"abc199_a"},"statements":[{"statement_type":"Markdown","content":"You are given integers $A$, $B$, and $C$.  \nDetermine whether $A^2 + B^2 < C^2$ holds.\n\n## Constraints\n\n*   $0 \\le A \\le 1000$\n*   $0 \\le B \\le 1000$\n*   $0 \\le C \\le 1000$\n*   $A$, $B$, and $C$ are integers.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$A$ $B$ $C$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"abc199_a","tags":[],"sample_group":[["2 2 4","Yes\n\nSince $A^2 + B^2 = 2^2 + 2^2 = 8$ and $C^2 = 4^2 = 16$, we have $A^2 + B^2 < C^2$, so we should print `Yes`."],["10 10 10","No\n\nSince $A^2 + B^2 = 200$ and $C^2 = 100$, $A^2 + B^2 < C^2$ does not hold."],["3 4 5","No"]],"created_at":"2026-03-03 11:01:13"}}