結果

問題 No.1469 programing
ユーザー 萩3萩3
提出日時 2021-04-30 17:02:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 3,000 ms
コード長 160 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 75,492 KB
最終ジャッジ日時 2024-07-18 13:51:50
合計ジャッジ時間 2,115 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,968 KB
testcase_01 AC 32 ms
51,968 KB
testcase_02 AC 31 ms
51,968 KB
testcase_03 AC 30 ms
52,112 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 40 ms
58,624 KB
testcase_06 AC 38 ms
58,144 KB
testcase_07 AC 40 ms
58,880 KB
testcase_08 AC 52 ms
66,816 KB
testcase_09 AC 52 ms
70,144 KB
testcase_10 AC 48 ms
68,764 KB
testcase_11 AC 61 ms
75,412 KB
testcase_12 AC 54 ms
72,576 KB
testcase_13 AC 34 ms
51,584 KB
testcase_14 AC 70 ms
75,192 KB
testcase_15 AC 61 ms
75,492 KB
testcase_16 AC 73 ms
75,392 KB
testcase_17 AC 268 ms
75,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

tmp = None
while True:
    c = sys.stdin.buffer.read(1)
    if c==tmp: continue
    
    sys.stdout.buffer.write(c)
    tmp=c
    if c==b'\n': break
0