2023年6月26日 星期一

ZeroJudge python解答:a006. 一元二次方程式

a006. 一元二次方程式 - 高中生程式解題系統 (zerojudge.tw)

我的解答:

import math
a = []
a = input().split(' ')
a1 = []
for i in a:
    a1.append(int(i))
D = int(a1[1]*a1[1]-4*a1[0]*a1[2])
if D > 0:
    x1 = int((-1*a1[1] + math.sqrt(D))/(2*a1[0]))
    x2 = int((-1*a1[1] - math.sqrt(D))/(2*a1[0]))
    print('Two different roots x1='+str(x1)+' , x2='+str(x2))
elif D == 0:
    x = int((-1*a1[1])/(2*a1[0]))
    print('Two same roots x='+str(x))
elif D < 0:
    print('No real root')


資料來源:
1.高中生解題系統
2.

ZeroJudge解題
ZeroJudge  python解答:a001. 哈囉

ZeroJudge python解答:a004. 文文的求婚
ZeroJudge python解答:a005. Eva 的回家作業
ZeroJudge python解答:a006. 一元二次方程式
ZeroJudge python解答:a009. 解碼器
ZeroJudge python解答:a010. 因數分解
ZeroJudge python解答:a015. 矩陣的翻轉
ZeroJudge python解答:a017. 五則運算
ZeroJudge python解答:a020. 身分證檢驗
ZeroJudge python解答:a021. 大數運算
ZeroJudge python解答:a022. 迴文
ZeroJudge python解答:a024. 最大公因數(GCD)
ZeroJudge python解答:a034. 二進位制轉換
ZeroJudge python解答:a038. 數字翻轉
ZeroJudge python解答:a040. 阿姆斯壯數
ZeroJudge python解答:a042. 平面圓形切割
ZeroJudge python解答:a044. 空間切割
ZeroJudge python解答:a053. Sagit's 計分程式
ZeroJudge python解答:a054. 電話客服中心
ZeroJudge python解答:a058. MOD3
ZeroJudge python解答:a059. 完全平方
ZeroJudge python解答:a065. 提款卡密碼
ZeroJudge python解答:a104. 排序
ZeroJudge python解答:a121. 質數又來囉
ZeroJudge python解答:a148. You Cannot Pass?!
ZeroJudge python解答:a149. 乘乘樂
ZeroJudge python解答:a215. 明明愛數數
ZeroJudge python解答:a216. 數數愛明明
ZeroJudge python解答:a224. 明明愛明明
ZeroJudge python解答:a225. 明明愛排列
ZeroJudge python解答:a244. 新手訓練 ~ for + if
ZeroJudge python解答:a248. 新手訓練 ~ 陣列應用
ZeroJudge python解答:a263. 日期差幾天
ZeroJudge  python解答:a694. 吞食天地二
ZeroJudge python解答:a738. 最大公约数
 





ZeroJudge python解答:a005. Eva 的回家作業


我的解答為
t = int(input())
a = list()
a1 = list()
b = dict()
if t >= 0 and t <= 20:
    for i in range(0,t):
        a = input().split(' ')
        for j in a:
            a1.append(int(j))
        b[i] = a1
        a = []
        a1 = []
for i in range(0,t):
    if b[i][3]%b[i][2] == 0:
        b[i].append(int(b[i][3]*(b[i][3]/b[i][2])))
    else:
        b[i].append(b[i][3]+(b[i][3]-b[i][2]))

for i in range(0,t):
    for j in b[i]:
        print(j,end=' ')
    print()

資料來源:
1.高中生解題系統
2.

ZeroJudge解題
ZeroJudge  python解答:a001. 哈囉

ZeroJudge python解答:a004. 文文的求婚
ZeroJudge python解答:a005. Eva 的回家作業
ZeroJudge python解答:a006. 一元二次方程式
ZeroJudge python解答:a009. 解碼器
ZeroJudge python解答:a010. 因數分解
ZeroJudge python解答:a015. 矩陣的翻轉
ZeroJudge python解答:a017. 五則運算
ZeroJudge python解答:a020. 身分證檢驗
ZeroJudge python解答:a021. 大數運算
ZeroJudge python解答:a022. 迴文
ZeroJudge python解答:a024. 最大公因數(GCD)
ZeroJudge python解答:a034. 二進位制轉換
ZeroJudge python解答:a038. 數字翻轉
ZeroJudge python解答:a040. 阿姆斯壯數
ZeroJudge python解答:a042. 平面圓形切割
ZeroJudge python解答:a044. 空間切割
ZeroJudge python解答:a053. Sagit's 計分程式
ZeroJudge python解答:a054. 電話客服中心
ZeroJudge python解答:a058. MOD3
ZeroJudge python解答:a059. 完全平方
ZeroJudge python解答:a065. 提款卡密碼
ZeroJudge python解答:a104. 排序
ZeroJudge python解答:a121. 質數又來囉
ZeroJudge python解答:a148. You Cannot Pass?!
ZeroJudge python解答:a149. 乘乘樂
ZeroJudge python解答:a215. 明明愛數數
ZeroJudge python解答:a216. 數數愛明明
ZeroJudge python解答:a224. 明明愛明明
ZeroJudge python解答:a225. 明明愛排列
ZeroJudge python解答:a244. 新手訓練 ~ for + if
ZeroJudge python解答:a248. 新手訓練 ~ 陣列應用
ZeroJudge python解答:a263. 日期差幾天
ZeroJudge  python解答:a694. 吞食天地二
ZeroJudge python解答:a738. 最大公约数
 





2023年6月25日 星期日

ZeroJudge python解答:a004. 文文的求婚

        問題:題目中有個關鍵,那就是[python如何實現對文件結束符(EOF)的判斷]
那我就利用1.用sys.stdin 與 2.用try...except 來進行解題
我自己的解答:
1.用sys.stdin
import sys
for line in sys.stdin:
    if line != "\n":
   
    else:
        break 

所以我的解答
import sys
for line in sys.stdin:
    if line != "\n":
        a = int(line)
        if (a%4 ==0 and a%100 != 0) or (a%400 == 0):
            print('閏年')
        else:
            print('平年')
    else:
        break

2.用try...except 來進行解題

while True:
    try:
        a = int(input())
    except:
        break

所以我的解答

while True:
    try:
        a = int(input())
    except:
        break
    if (a%4 == 0 and a%100 != 0) or (a%400 == 0):
        print('閏年')
    else:
        print('平年')




資料來源:
1.高中生解題系統
2.

ZeroJudge解題
ZeroJudge  python解答:a001. 哈囉

ZeroJudge python解答:a004. 文文的求婚
ZeroJudge python解答:a005. Eva 的回家作業
ZeroJudge python解答:a006. 一元二次方程式
ZeroJudge python解答:a009. 解碼器
ZeroJudge python解答:a010. 因數分解
ZeroJudge python解答:a015. 矩陣的翻轉
ZeroJudge python解答:a017. 五則運算
ZeroJudge python解答:a020. 身分證檢驗
ZeroJudge python解答:a021. 大數運算
ZeroJudge python解答:a022. 迴文
ZeroJudge python解答:a024. 最大公因數(GCD)
ZeroJudge python解答:a034. 二進位制轉換
ZeroJudge python解答:a038. 數字翻轉
ZeroJudge python解答:a040. 阿姆斯壯數
ZeroJudge python解答:a042. 平面圓形切割
ZeroJudge python解答:a044. 空間切割
ZeroJudge python解答:a053. Sagit's 計分程式
ZeroJudge python解答:a054. 電話客服中心
ZeroJudge python解答:a058. MOD3
ZeroJudge python解答:a059. 完全平方
ZeroJudge python解答:a065. 提款卡密碼
ZeroJudge python解答:a104. 排序
ZeroJudge python解答:a121. 質數又來囉
ZeroJudge python解答:a148. You Cannot Pass?!
ZeroJudge python解答:a149. 乘乘樂
ZeroJudge python解答:a215. 明明愛數數
ZeroJudge python解答:a216. 數數愛明明
ZeroJudge python解答:a224. 明明愛明明
ZeroJudge python解答:a225. 明明愛排列
ZeroJudge python解答:a244. 新手訓練 ~ for + if
ZeroJudge python解答:a248. 新手訓練 ~ 陣列應用
ZeroJudge python解答:a263. 日期差幾天
ZeroJudge  python解答:a694. 吞食天地二
ZeroJudge python解答:a738. 最大公约数
 





ZeroJudge python解答:a003. 兩光法師占卜術

a003. 兩光法師占卜術 - 高中生程式解題系統 (zerojudge.tw)

我自己的解答:

b = list()
a = input()
b = a.split(' ')
M = int(b[0])
D = int(b[1])
S = (M*2+D)%3
if S == 0:
    print('普通')
elif S == 1:
    print('吉')
elif S == 2:
    print('大吉')
資料來源:
1.高中生解題系統
2.

ZeroJudge解題
ZeroJudge  python解答:a001. 哈囉

ZeroJudge python解答:a004. 文文的求婚
ZeroJudge python解答:a005. Eva 的回家作業
ZeroJudge python解答:a006. 一元二次方程式
ZeroJudge python解答:a009. 解碼器
ZeroJudge python解答:a010. 因數分解
ZeroJudge python解答:a015. 矩陣的翻轉
ZeroJudge python解答:a017. 五則運算
ZeroJudge python解答:a020. 身分證檢驗
ZeroJudge python解答:a021. 大數運算
ZeroJudge python解答:a022. 迴文
ZeroJudge python解答:a024. 最大公因數(GCD)
ZeroJudge python解答:a034. 二進位制轉換
ZeroJudge python解答:a038. 數字翻轉
ZeroJudge python解答:a040. 阿姆斯壯數
ZeroJudge python解答:a042. 平面圓形切割
ZeroJudge python解答:a044. 空間切割
ZeroJudge python解答:a053. Sagit's 計分程式
ZeroJudge python解答:a054. 電話客服中心
ZeroJudge python解答:a058. MOD3
ZeroJudge python解答:a059. 完全平方
ZeroJudge python解答:a065. 提款卡密碼
ZeroJudge python解答:a104. 排序
ZeroJudge python解答:a121. 質數又來囉
ZeroJudge python解答:a148. You Cannot Pass?!
ZeroJudge python解答:a149. 乘乘樂
ZeroJudge python解答:a215. 明明愛數數
ZeroJudge python解答:a216. 數數愛明明
ZeroJudge python解答:a224. 明明愛明明
ZeroJudge python解答:a225. 明明愛排列
ZeroJudge python解答:a244. 新手訓練 ~ for + if
ZeroJudge python解答:a248. 新手訓練 ~ 陣列應用
ZeroJudge python解答:a263. 日期差幾天
ZeroJudge  python解答:a694. 吞食天地二
ZeroJudge python解答:a738. 最大公约数
 





ZeroJudge python解答:a002. 簡易加法

 

我自己的解答:
b = list()
a = input()
b = a.split(' ')
print(int(b[0])+int(b[1]))



資料來源:
1.高中生解題系統
2.

ZeroJudge解題
ZeroJudge  python解答:a001. 哈囉

ZeroJudge python解答:a004. 文文的求婚
ZeroJudge python解答:a005. Eva 的回家作業
ZeroJudge python解答:a006. 一元二次方程式
ZeroJudge python解答:a009. 解碼器
ZeroJudge python解答:a010. 因數分解
ZeroJudge python解答:a015. 矩陣的翻轉
ZeroJudge python解答:a017. 五則運算
ZeroJudge python解答:a020. 身分證檢驗
ZeroJudge python解答:a021. 大數運算
ZeroJudge python解答:a022. 迴文
ZeroJudge python解答:a024. 最大公因數(GCD)
ZeroJudge python解答:a034. 二進位制轉換
ZeroJudge python解答:a038. 數字翻轉
ZeroJudge python解答:a040. 阿姆斯壯數
ZeroJudge python解答:a042. 平面圓形切割
ZeroJudge python解答:a044. 空間切割
ZeroJudge python解答:a053. Sagit's 計分程式
ZeroJudge python解答:a054. 電話客服中心
ZeroJudge python解答:a058. MOD3
ZeroJudge python解答:a059. 完全平方
ZeroJudge python解答:a065. 提款卡密碼
ZeroJudge python解答:a104. 排序
ZeroJudge python解答:a121. 質數又來囉
ZeroJudge python解答:a148. You Cannot Pass?!
ZeroJudge python解答:a149. 乘乘樂
ZeroJudge python解答:a215. 明明愛數數
ZeroJudge python解答:a216. 數數愛明明
ZeroJudge python解答:a224. 明明愛明明
ZeroJudge python解答:a225. 明明愛排列
ZeroJudge python解答:a244. 新手訓練 ~ for + if
ZeroJudge python解答:a248. 新手訓練 ~ 陣列應用
ZeroJudge python解答:a263. 日期差幾天
ZeroJudge  python解答:a694. 吞食天地二
ZeroJudge python解答:a738. 最大公约数
 





ZeroJudge python解答:a001. 哈囉

         最近嘗試寫解題系統的題目。看看是否能找出自己寫程式的弱項,進而補強自己的不足。於是找大神,搜尋關鍵是程式解題系統。首先,就是高中生解題系統
選擇註冊

發現可[以現有的Google帳號創建身分]
         
於是,開始解題。
word = input()
print('hello,',word)

資料來源:
1.高中生解題系統
2.

ZeroJudge解題
ZeroJudge  python解答:a001. 哈囉

ZeroJudge python解答:a004. 文文的求婚
ZeroJudge python解答:a005. Eva 的回家作業
ZeroJudge python解答:a006. 一元二次方程式
ZeroJudge python解答:a009. 解碼器
ZeroJudge python解答:a010. 因數分解
ZeroJudge python解答:a015. 矩陣的翻轉
ZeroJudge python解答:a017. 五則運算
ZeroJudge python解答:a020. 身分證檢驗
ZeroJudge python解答:a021. 大數運算
ZeroJudge python解答:a022. 迴文
ZeroJudge python解答:a024. 最大公因數(GCD)
ZeroJudge python解答:a034. 二進位制轉換
ZeroJudge python解答:a038. 數字翻轉
ZeroJudge python解答:a040. 阿姆斯壯數
ZeroJudge python解答:a042. 平面圓形切割
ZeroJudge python解答:a044. 空間切割
ZeroJudge python解答:a053. Sagit's 計分程式
ZeroJudge python解答:a054. 電話客服中心
ZeroJudge python解答:a058. MOD3
ZeroJudge python解答:a059. 完全平方
ZeroJudge python解答:a065. 提款卡密碼
ZeroJudge python解答:a104. 排序
ZeroJudge python解答:a121. 質數又來囉
ZeroJudge python解答:a148. You Cannot Pass?!
ZeroJudge python解答:a149. 乘乘樂
ZeroJudge python解答:a215. 明明愛數數
ZeroJudge python解答:a216. 數數愛明明
ZeroJudge python解答:a224. 明明愛明明
ZeroJudge python解答:a225. 明明愛排列
ZeroJudge python解答:a244. 新手訓練 ~ for + if
ZeroJudge python解答:a248. 新手訓練 ~ 陣列應用
ZeroJudge python解答:a263. 日期差幾天
ZeroJudge  python解答:a694. 吞食天地二
ZeroJudge python解答:a738. 最大公约数
 





2023年6月13日 星期二

如何在電腦教室學生機Windows 11 x64 安裝 Django 3.2.3 版與相關設定

       在電腦教室學生機Windows 11上要教學生Django網頁。那要如何進行?
01.安裝Python 3.9.13
    下載後,對此exe 點兩下,即可進行下一步、完成安裝。
02.測試Python 3.9.13 是否安裝成功
    (1)打開命令提示字元:

    (2)輸入 python --version

03.利用pip 安裝套件 virtualenv 與 virtualenvwrapper-win 來建立虛擬環境
命令列輸入
pip install virtualenv
pip install virtualenvwrapper-win

04.建立資料夾django
命令列輸入
md django

05.將資料夾django 建立虛擬環境
命令列輸入
python -m venv django

06.進入資料夾django 內,檢查內部
命令列輸入
cd django
dir

07.進入Scripts 檢查其內容
命令列輸入
cd Scripts
dir

08.啟動虛擬環境
命令列輸入
activate
09.回到 c:\Users\m\django\
命令列輸入
cd ..
10.利用pip 安裝套件 django 3.2.3 版
命令列輸入
pip install django==3.2.3
11.建立django 的專案 firstproject
命令列輸入
django-admin startproject firstproject
dir

ZeroJudge python解答:a271. 彩色蘿蔔

  a271. 彩色蘿蔔 我的解法: 這題的重點只有兩個: 每天早上先扣中毒效果,再吃蘿蔔 中毒可累加,而且吃到黑蘿蔔當天不扣毒,從隔天開始扣 t = int ( input ()) for i in range ( t ):     x , y , z ,...