結果

問題 No.1089 三変数方程式
ユーザー _matumo__matumo_
提出日時 2020-07-05 00:36:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 839 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 11,792 KB
実行使用メモリ 10,092 KB
最終ジャッジ日時 2023-10-19 21:33:56
合計ジャッジ時間 6,931 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,092 KB
testcase_01 AC 30 ms
10,092 KB
testcase_02 AC 43 ms
10,092 KB
testcase_03 AC 573 ms
10,092 KB
testcase_04 AC 55 ms
10,092 KB
testcase_05 AC 839 ms
10,092 KB
testcase_06 AC 200 ms
10,092 KB
testcase_07 AC 104 ms
10,092 KB
testcase_08 AC 716 ms
10,092 KB
testcase_09 AC 49 ms
10,092 KB
testcase_10 AC 601 ms
10,092 KB
testcase_11 AC 197 ms
10,092 KB
testcase_12 AC 465 ms
10,092 KB
testcase_13 AC 204 ms
10,092 KB
testcase_14 AC 527 ms
10,092 KB
testcase_15 AC 707 ms
10,092 KB
testcase_16 AC 614 ms
10,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
m=0
for x in range(N+1):
    for y in range(N+1):
        if x+y>N:   break
        m+=1
print(m)
0