結果
| 問題 | No.1089 三変数方程式 |
| ユーザー |
pete1288998
|
| 提出日時 | 2020-06-27 01:16:23 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 952 ms / 2,000 ms |
| + 690µs | |
| コード長 | 125 bytes |
| 記録 | |
| コンパイル時間 | 417 ms |
| コンパイル使用メモリ | 21,280 KB |
| 実行使用メモリ | 15,740 KB |
| 最終ジャッジ日時 | 2026-08-07 09:16:29 |
| 合計ジャッジ時間 | 9,045 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
n = int(input())
cnt = 0
for x in range(n+1):
for y in range(n+1):
if x+y <= n:
cnt += 1
print(cnt)
pete1288998