結果

問題 No.249 N言っちゃダメゲーム (2)
ユーザー バカらっくバカらっく
提出日時 2018-03-05 16:06:11
言語 Swift
(5.10.0)
結果
AC  
実行時間 10 ms / 1,000 ms
コード長 59 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 113,412 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-11-30 12:06:54
合計ジャッジ時間 1,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
9,344 KB
testcase_01 AC 10 ms
9,600 KB
testcase_02 AC 8 ms
9,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.swift:1:5: warning: immutable value 'i' was never used; consider replacing with '_' or removing it
for i in 0..<1000 {
    ^
    _
Main.swift:2:9: warning: initialization of immutable value 'inpt' was never used; consider replacing with assignment to '_' or removing it
    let inpt = readLine()
    ~~~~^~~~
    _

ソースコード

diff #

for i in 0..<1000 {
    let inpt = readLine()
}
print(500)
0