#11809: Python 一行解


jh06150303 (J4S0N.H)

學校 : 中原大學
編號 : 64708
來源 : [1.34.55.79]
最後登入時間 :
2019-10-20 15:46:33
d063. 0 與 1 -- 板橋高中教學題 | From: [60.251.191.252] | 發表日期 : 2017-03-12 23:17

print(int(not int(input().strip())))

 

以上

 
#15605: Re:Python 一行解


tang891228 (tang891228)

學校 : 國立成功大學
編號 : 61119
來源 : [140.116.1.138]
最後登入時間 :
2018-09-24 00:20:31
d063. 0 與 1 -- 板橋高中教學題 | From: [36.236.237.164] | 發表日期 : 2018-10-15 01:15

print(int(not int(input().strip())))

 

以上



更短:print(int(input()=='0'))

最短:print(49-ord(input()))

 
#15607: Re:Python 一行解


tang891228_2 (tang891228_2)

學校 : 高雄市立中正高級中學
編號 : 62933
來源 : [111.254.56.102]
最後登入時間 :
2019-09-28 11:44:44
d063. 0 與 1 -- 板橋高中教學題 | From: [36.236.237.164] | 發表日期 : 2018-10-15 03:28

更短:print(int(input()=='0'))

最短:print(49-ord(input()))



不,這才是最短:print(1-int(input()))

 
ZeroJudge Forum